summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/safety-inherent-impl.rs
blob: 50e15f0d25f3bce7198801bec3397a30ea1ce6e4 (plain)
1
2
3
4
5
6
7
8
9
// Check that inherent impls cannot be unsafe.

struct SomeStruct;

unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
    fn foo(self) { }
}

fn main() { }