mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
179 B
Rust
11 lines
179 B
Rust
// run-rustfix
|
|
#![allow(unused)]
|
|
struct Foo<'a, 'b> {
|
|
a: &'a &'b i32
|
|
}
|
|
|
|
fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {}
|
|
//~^ ERROR expected one of `,` or `>`, found `;`
|
|
|
|
fn main() {}
|