Sign in
gnu
/
gcc
/
refs/heads/devel/gimple-linterchange
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
array26.C
blob: f8f3c3743fcfd9da8970b1022209d1a0fadc7ecd [
file
] [
log
] [
blame
]
// PR c++/42058
// { dg-options "" }
struct
A
;
struct
B
{
A a
;
// { dg-error "incomplete type" }
};
B b
[
1
]
=
(
B
[])
{
0
};