]> git.proxmox.com Git - rustc.git/blob - tests/ui/regions/regions-in-structs-anon.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / regions / regions-in-structs-anon.rs
1 // Test that anonymous lifetimes are not permitted in struct declarations
2
3 struct Foo {
4 x: &isize //~ ERROR missing lifetime specifier
5 }
6
7 fn main() {}