Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coherence
/
coherence-default-trait-impl.rs
blob: d57fb4777540394a8c87b9351a0b6f90f815acd6 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
auto_traits
)]
#![
feature
(
negative_impls
)]
auto
trait
MySafeTrait
{}
struct
Foo
;
unsafe
impl
MySafeTrait
for
Foo
{}
//~^ ERROR E0199
unsafe
auto
trait
MyUnsafeTrait
{}
impl
MyUnsafeTrait
for
Foo
{}
//~^ ERROR E0200
fn
main
()
{}