Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
regions
/
regions-in-enums-anon.rs
blob: da65cb791ec27c2f48903aa16e0c1624dcb889d2 [
file
] [
log
] [
blame
] [
edit
]
// Test that anonymous lifetimes are not permitted in enum declarations
enum
Foo
{
Bar
(&
isize
)
//~ ERROR missing lifetime specifier
}
fn
main
()
{}