summaryrefslogtreecommitdiffstats
path: root/src/test/ui/auto-traits/auto-trait-validation.fixed
blob: da878ac6222bb0ccd7d7d37c11b2577e33b8cc1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(auto_traits)]

// run-rustfix

auto trait Generic {}
//~^ auto traits cannot have generic parameters [E0567]
auto trait Bound {}
//~^ auto traits cannot have super traits or lifetime bounds [E0568]
auto trait LifetimeBound {}
//~^ auto traits cannot have super traits or lifetime bounds [E0568]
auto trait MyTrait {  }
//~^ auto traits cannot have associated items [E0380]
fn main() {}