blob: f579eb6772d4414b1c4fdeae31cd009a60d0b1ff [file] [log] [blame]
#![feature(auto_traits)]
auto trait Trait1<'outer> {}
//~^ ERROR auto traits cannot have generic parameters
fn f<'a>(x: impl Trait1<'a>) {}
fn main() {
f("");
}