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>;