blob: 50e15f0d25f3bce7198801bec3397a30ea1ce6e4 [file] [log] [blame]
// Check that inherent impls cannot be unsafe.
struct SomeStruct;
unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
fn foo(self) { }
}
fn main() { }