aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/anon6.C
blob: 7c5a96848cc8107506827f0a8b71d1a3e95ec2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
extern int v1; // { dg-message "declared" }
static union { int v1; }; // { dg-error "redeclaration" } 

static union { int v2; }; // { dg-message "declared" }
extern int v2; // { dg-error "redeclaration" } 

int v3; // { dg-message "declared" }
static union { int v3; }; // { dg-error "redeclaration" } 

static union { int v4; }; // { dg-message "declared" }
static union { int v4; }; // { dg-error "redeclaration" }