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