aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/crash38.C
blob: c050b93cc42ebfb68163caad28b13527cdc78f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c++/33207  */

/* This would not ICE.  */
namespace M { } /* { dg-error "previous declaration" } */
struct M; /* { dg-error "redeclared as different kind of symbol" } */
M *p; /* { dg-error "expected constructor" } */

/* This would ICE when processing 'p'.  */
namespace N { } /* { dg-error "previous declaration" } */
struct N; /* { dg-error "redeclared as different kind of symbol" } */
struct N* p; /* { dg-error "redeclared as different kind of symbol|invalid type" } */