Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
complit3.C
blob: a54a8bce1f9ee65cb9d21786f06a4dc9fbbed16a [
file
] [
log
] [
blame
]
// { dg-options "" }
int
Compound_Literals_0
()
{
static
int
y
[]
=
(
int
[])
{
1
,
2
,
3
};
// { dg-error "init" }
static
int
z
[]
=
(
int
[
3
])
{
1
};
// { dg-error "init" }
return
y
[
0
]+
z
[
0
];
}