rust/tests/ui/specialization/defaultimpl/validation.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
600 B
Rust
Raw Permalink Normal View History

#![feature(negative_impls)]
2020-05-17 08:22:48 +00:00
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
struct S;
struct Z;
default impl S {} //~ ERROR inherent impls cannot be `default`
default unsafe impl Send for S {}
//~^ ERROR impls of auto traits cannot be default
default impl !Send for Z {}
//~^ ERROR impls of auto traits cannot be default
//~| ERROR negative impls cannot be default impls
//~| ERROR `!Send` impl requires `Z: Send` but the struct it is implemented for does not
trait Tr {}
default impl !Tr for S {}
//~^ ERROR negative impls cannot be default impls
fn main() {}