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