Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static25.C
blob: 20c0c846e3a31e596bb4dc995f37ff845ad9b9a5 [
file
] [
log
] [
blame
]
// PR c++/27819
struct
A
{
static
const
char
i
=
1
;
};
template
<int>
struct
B
{
static
const
int
j
=
A
::
i
;
int
x
[
int
(
j
)];
};
B
<
0
>
b
;