2020-11-22 19:54:31 -08:00
|
|
|
#![feature(auto_traits)]
|
2017-10-15 16:03:03 -02:00
|
|
|
|
2021-10-03 17:58:10 +02:00
|
|
|
// run-rustfix
|
|
|
|
|
2017-10-15 16:03:03 -02:00
|
|
|
auto trait Generic<T> {}
|
2017-12-04 20:55:14 -02:00
|
|
|
//~^ auto traits cannot have generic parameters [E0567]
|
2017-10-15 16:03:03 -02:00
|
|
|
auto trait Bound : Copy {}
|
2021-10-03 17:58:10 +02: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 16:03:03 -02:00
|
|
|
auto trait MyTrait { fn foo() {} }
|
2021-10-03 17:58:10 +02:00
|
|
|
//~^ auto traits cannot have associated items [E0380]
|
2017-10-15 16:03:03 -02:00
|
|
|
fn main() {}
|