Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
negative-impls
/
negative-default-impls.rs
blob: c68bca432fa8667e7b5777dacc4959284f44b719 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
negative_impls
)]
#![
feature
(
specialization
)]
//~^ WARN the feature `specialization` is incomplete
trait
MyTrait
{
type
Foo
;
}
default
impl
!
MyTrait
for
u32
{}
//~ ERROR negative impls cannot be default impls
fn
main
()
{}