Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
error49.C
blob: 57789a79aa9c8eec623f7bd18c26e3603fca2572 [
file
] [
log
] [
blame
]
// PR c++/40405
template
<
int
,
int
>
struct
A
{
static
int
i
;
};
template
<int>
int
A
<
0
,
0
>::
i
=
0
;
// { dg-error "" }
int
j
=
A
<
0
,
0
>::
i
;