Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
safety-inherent-impl.rs
blob: 50e15f0d25f3bce7198801bec3397a30ea1ce6e4 [
file
] [
log
] [
blame
] [
edit
]
// Check that inherent impls cannot be unsafe.
struct
SomeStruct
;
unsafe
impl
SomeStruct
{
//~ ERROR inherent impls cannot be unsafe
fn
foo
(
self
)
{
}
}
fn
main
()
{
}