Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
regions
/
regions-in-enums-anon.rs
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
()
{}