mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 01:18:43 +00:00
9 lines
200 B
Rust
9 lines
200 B
Rust
struct Foo<T>(T);
|
|
|
|
impl<'s> Foo<&'s u8> {
|
|
fn bar<'s>(&self, x: &'s u8) {} //~ ERROR shadows a lifetime name
|
|
fn baz(x: for<'s> fn(&'s u32)) {} //~ ERROR shadows a lifetime name
|
|
}
|
|
|
|
fn main() {}
|