1 2 3 4 5 6 7 8 9 10
#![feature(auto_traits)] auto trait Trait1<'outer> {} //~^ ERROR auto traits cannot have generic parameters fn f<'a>(x: impl Trait1<'a>) {} fn main() { f(""); }