1 // { dg-do compile }
2 // { dg-options "-std=c++98" }
3 
4 // Make sure we issue a diagnostic if a type with no linkage is used
5 // to declare a a variable that has linkage.
6 
7 struct { int i; } a; // { dg-warning "unnamed type" }
8 
foo()9 void foo() { a.i; }
10