Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
traits
/
safety-inherent-impl.rs
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
()
{
}