PR c++/67273
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / anon2.C
blobdbda79fefcf156b0972283846c4831202861a14c
1 // { dg-do compile }
2 // { dg-options "-std=c++98" }
4 // Make sure we issue a diagnostic if a type with no linkage is used
5 // to declare a a variable that has linkage.
7 struct { int i; } a; // { dg-warning "unnamed type" }
9 void foo() { a.i; }