Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
struct-4.C
blob: 6d01f3e88aa6aac47fa902b7864ade59ace1d74f [
file
] [
log
] [
blame
]
/* PR c/35437 */
/* { dg-do compile } */
struct
A
{
int
i
;
struct
A a
;
/* { dg-error "has incomplete type" } */
};
void
foo
()
{
struct
A b
=
{
0
};
}