mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
23 lines
546 B
Rust
23 lines
546 B
Rust
#![feature(negative_impls)]
|
|
#![feature(specialization)]
|
|
|
|
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() {}
|