Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Check that inherent impls cannot be unsafe.
struct SomeStruct;
unsafe impl SomeStruct { //~ ERROR inherent impls cannot be unsafe
fn foo(self) { }
}
fn main() { }