2017-12-02 13:15:03 -06:00
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
#![feature(specialization)]
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
struct Z;
|
|
|
|
|
2020-02-21 19:01:53 -06:00
|
|
|
default impl S {} //~ ERROR inherent impls cannot be `default`
|
2017-12-02 13:15:03 -06:00
|
|
|
|
|
|
|
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
|
2018-08-22 18:19:38 -05:00
|
|
|
|
|
|
|
fn main() {}
|