blob: 00dfe26d6bacd91462047b5efdb3d945215c3203 [file] [log] [blame]
// PR c++/95468
// { dg-do compile { target c++11 } }
struct A {
template <int N>
static constexpr int condition() { return N; }
};
template <int> struct B {};
template <class>
using T = B<A::condition<int(1)>()>;