blob: fe97c6de970490626708f218f8e93403d56dad11 [file] [log] [blame]
// PR c++/58674
// { dg-do compile { target c++11 } }
template<int> struct A {};
template<int N> using B = A<N>;
template<typename T> struct C
{
B<T::i> b; // { dg-error "not usable" }
};
struct X
{
static const int i;
};
C<X> c;