blob: 8a445448c85810c2c4addfac1994f6d8e8deab2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#![feature(auto_traits)]
#![allow(dead_code)]
//@ run-rustfix
auto trait Generic {}
//~^ ERROR auto traits cannot have generic parameters [E0567]
auto trait Bound {}
//~^ ERROR auto traits cannot have super traits or lifetime bounds [E0568]
auto trait LifetimeBound {}
//~^ ERROR auto traits cannot have super traits or lifetime bounds [E0568]
auto trait MyTrait { }
//~^ ERROR auto traits cannot have associated items [E0380]
fn main() {}
|