Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static32.C
blob: b17d14dd0be962e52d82a70843f505d75b232aa8 [
file
] [
log
] [
blame
]
// PR c++/51430
// { dg-do compile }
template
<int>
struct
A
{
static
const
int
x
[]
=
0
;
// { dg-error "in-class initialization|initializer fails" }
};
A
<
0
>
a
;