Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static4.C
blob: 526ced67e51822f3594e075fcc3de6ddda6fe493 [
file
] [
log
] [
blame
]
template
<
class
R
>
struct
A
{
static
int
_test
;
// { dg-message "" }
static
int
_test
;
// { dg-error "" }
};
template
<
class
R
>
int
A
<
R
>::
_test
=
0
;
struct
B
:
public
A
<int>
{
};