mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
164 B
Rust
12 lines
164 B
Rust
#![feature(auto_traits)]
|
|
|
|
auto trait Trait1<'a> {}
|
|
//~^ ERROR auto traits cannot have generic parameters
|
|
|
|
fn f<'a>(x: &dyn Trait1<'a>)
|
|
{}
|
|
|
|
fn main() {
|
|
f(&1);
|
|
}
|