aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/struct1.C
blob: 7c1e38c1863fdeacbb8f9fe3a7545ab62c794522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Various struct lookup tests.  We didn't used to complain about
// the definition of C.

struct A;
typedef struct A B;		// { dg-message "previous declaration" }
struct B;			// { dg-error "using typedef-name" }

typedef struct { int i; } C;	// { dg-message "previous declaration" }
struct C;			// { dg-error "using typedef-name" }

struct D;
typedef struct D D;
typedef struct D { int i; } D;
typedef struct D D;