2013-10-29 06:14:59 -04:00
|
|
|
// Test that anonymous lifetimes are not permitted in struct declarations
|
2012-04-18 21:26:25 -07:00
|
|
|
|
2013-10-29 06:14:59 -04:00
|
|
|
struct Foo {
|
2015-01-08 21:54:35 +11:00
|
|
|
x: &isize //~ ERROR missing lifetime specifier
|
2013-03-06 19:09:17 -08:00
|
|
|
}
|
2012-04-18 21:26:25 -07:00
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
fn main() {}
|