2017-10-15 13:03:03 -05:00
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
|
|
|
|
auto trait Generic<T> {}
|
2017-12-04 16:55:14 -06:00
|
|
|
//~^ auto traits cannot have generic parameters [E0567]
|
2017-10-15 13:03:03 -05:00
|
|
|
auto trait Bound : Copy {}
|
2017-12-04 16:55:14 -06:00
|
|
|
//~^ auto traits cannot have super traits [E0568]
|
2017-10-15 13:03:03 -05:00
|
|
|
auto trait MyTrait { fn foo() {} }
|
2017-12-04 16:55:14 -06:00
|
|
|
//~^ auto traits cannot have methods or associated items [E0380]
|
2017-10-15 13:03:03 -05:00
|
|
|
fn main() {}
|