Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
traits
/
negative-impls
/
negative-default-impls.rs
blob: c68bca432fa8667e7b5777dacc4959284f44b719 [
file
]
#![
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
()
{}