blob: 7cb2ce0dbf3f449cb43b067d74f286bf7b94d574 [file] [log] [blame]
// Test that anonymous lifetimes are not permitted in struct declarations
struct Foo {
x: &isize //~ ERROR missing lifetime specifier
}
fn main() {}