11 lines
168 B
Rust
11 lines
168 B
Rust
#![feature(auto_traits)]
|
|
|
|
auto trait Trait1<'outer> {}
|
|
//~^ ERROR auto traits cannot have generic parameters
|
|
|
|
fn f<'a>(x: impl Trait1<'a>) {}
|
|
|
|
fn main() {
|
|
f("");
|
|
}
|