]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0199.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0199.rs
CommitLineData
ba9703b0 1#![feature(negative_impls)]
3157f602
XL
2
3struct Foo;
4
c30ab7b3
SL
5trait Bar { }
6unsafe impl Bar for Foo { } //~ ERROR implementing the trait `Bar` is not unsafe [E0199]
a7813a04
XL
7
8fn main() {
54a0048b 9}