rust/tests/ui/regions/regions-in-structs-anon.rs
2023-01-11 09:32:08 +00:00

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() {}