rust/src/test/ui/traits/safety-inherent-impl.rs

10 lines
173 B
Rust

// Check that inherent impls cannot be unsafe.
struct SomeStruct;
unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
fn foo(self) { }
}
fn main() { }