Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
desig11.C
blob: 34bfbe1044e7cf0818932848d73eed447e4faa7d [
file
] [
log
] [
blame
]
// PR c++/85136
// { dg-options "" }
enum
{
e
};
template
<
int
I
>
void
f
()
{
const
int
x
[]
=
{
[
e
]
=
0
};
const
int
y
[]
=
{
[
I
]
=
0
};
}
int
main
()
{
f
<
0
>();
}