mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 09:31:39 +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);
|
|
}
|