blob: 744c93fc7c767cc73830d25244d02416f7960c00 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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() {}
|