2020-11-22 21:54:31 -06:00
|
|
|
#![feature(auto_traits)]
|
2017-10-15 13:03:03 -05:00
|
|
|
|
2021-10-03 10:58:10 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2017-10-15 13:03:03 -05:00
|
|
|
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 {}
|
2021-10-03 10:58:10 -05:00
|
|
|
//~^ auto traits cannot have super traits or lifetime bounds [E0568]
|
|
|
|
auto trait LifetimeBound : 'static {}
|
|
|
|
//~^ auto traits cannot have super traits or lifetime bounds [E0568]
|
2017-10-15 13:03:03 -05:00
|
|
|
auto trait MyTrait { fn foo() {} }
|
2021-10-03 10:58:10 -05:00
|
|
|
//~^ auto traits cannot have associated items [E0380]
|
2017-10-15 13:03:03 -05:00
|
|
|
fn main() {}
|