blob: aab9e784fe9d7ae96a4954631a07d6aa8cd48090 [file] [log] [blame]
// Test that default and negative trait implementations are gated by
// `auto_traits` feature gate
struct DummyStruct;
auto trait AutoDummyTrait {}
//~^ ERROR auto traits are experimental and possibly buggy
impl !AutoDummyTrait for DummyStruct {}
//~^ ERROR negative trait bounds are not fully implemented; use marker types for now
fn main() {}