rust/tests/ui/regions/regions-in-enums-anon.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
153 B
Rust
Raw Normal View History

// Test that anonymous lifetimes are not permitted in enum declarations
enum Foo {
Bar(&isize) //~ ERROR missing lifetime specifier
2013-03-07 03:09:17 +00:00
}
fn main() {}