Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
g++.dg
/
init
/
array28.C
blob: 8cf19ba43310b6f02ff4e78af11146fd5c80541e [
file
] [
log
] [
blame
]
// PR c++/49669
struct
Foo
{
explicit
Foo
(
int
)
{
}
};
struct
Goo
{
Goo
()
:
x
(
Foo
(
4
),
Foo
(
5
))
{
}
// { dg-error "array" }
Foo
x
[
2
];
};