Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
class1.C
blob: 96415fbc2254dfc1da8f9c6c6ae012b2a956bae1 [
file
] [
log
] [
blame
]
extern
const
int
a
;
template
<
const
int
&>
class
X
{};
template
<typename>
struct
Y
{
X
<a>
x
;
};
template
struct
Y
<int>
;