aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/anon2.C
blob: d556ba0034a18eda18bfc7459ac0bfcda8c164ff (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }
// { dg-options "" }

// Make sure we issue a diagnostic if a type with no linkage is used
// to declare a a variable that has linkage.

struct { int i; } a; // { dg-warning "anonymous type" }

void foo() { a.i; }