rust/tests/ui/traits/safety-inherent-impl.rs
2023-01-11 09:32:08 +00:00

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() { }