mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-27 07:52:52 +00:00
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("");
|
|
}
|