about summary refs log tree commit diff
path: root/src/test/ui/specialization/defaultimpl/validation.rs
blob: 26b3f1ec4149118ff12904b40c4feec30dff4af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![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() {}