Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
const8.C
blob: 5b12629539b4ede9e8d4ff4818dbf7223e85aed1 [
file
] [
log
] [
blame
]
// PR c++/48707
struct
A
{
static
int
a
();
};
template
<
typename
X
>
struct
B
:
A
{
static
int
const
b
;
};
template
<
typename
X
>
int
const
B
<
X
>::
b
=
B
<
X
>::
a
();