Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static6.C
blob: 30ecae94067cead7911ff4384f8308dfda7ceaaf [
file
] [
log
] [
blame
]
// PR c++/13969
struct
B
{
static
const
int
N
=
10
;
};
template
<int>
struct
X
{};
template
<typename>
struct
S
{
static
const
int
N
=
B
::
N
;
X
<
N
>
x
;
};
template
class
S
<float>
;