mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +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() {}
|