mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 21:52:25 +00:00
6 lines
177 B
Rust
6 lines
177 B
Rust
fn foo<T>() where T: for<'a> 'a {}
|
|
//~^ ERROR `for<...>` may only modify trait bounds, not lifetime bounds
|
|
//~| ERROR use of undeclared lifetime name `'a` [E0261]
|
|
|
|
fn main() {}
|