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

8 lines
155 B
Rust

// Test that anonymous lifetimes are not permitted in struct declarations
struct Foo {
x: &isize //~ ERROR missing lifetime specifier
}
fn main() {}