OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / anon3.C
1 // Test that anonymous unions work with explicit scope.
2
3 static union
4 {
5   int i;
6 };
7
8 int main()
9 {
10   return ::i;
11 }