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