blob: e9b6ab54b1f7aeec6391560ef3d79bd8185a2ec8 [file] [log] [blame]
//@ 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() {}