blob: bed89c7dc09875b2e8576305c51249541b9478b8 [file] [log] [blame]
// Check that the `'_` used in structs/enums gives an error.
use std::fmt::Debug;
struct Foo {
x: &'_ u32, //~ ERROR missing lifetime specifier
}
enum Bar {
Variant(&'_ u32), //~ ERROR missing lifetime specifier
}
fn main() { }