]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/trait-safety-inherent-impl.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / traits / trait-safety-inherent-impl.rs
1 // Check that inherent impls cannot be unsafe.
2
3 struct SomeStruct;
4
5 unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
6 fn foo(self) { }
7 }
8
9 fn main() { }