1 2 3 4 5 6 7
// Test that anonymous lifetimes are not permitted in struct declarations struct Foo { x: &isize //~ ERROR missing lifetime specifier } fn main() {}