mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
16 lines
419 B
Rust
16 lines
419 B
Rust
#![feature(optin_builtin_traits)]
|
|
#![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
|
|
|
|
trait Tr {}
|
|
default impl !Tr for S {} //~ ERROR negative impls are only allowed for auto traits
|
|
|
|
fn main() {}
|