blob: c784f2734417e5ea8b083a50b1ef4d9aa57a7068 [file] [log] [blame]
// PR c++/96805
// { dg-do compile { target c++11 } }
template <typename T> class a {
template <int N> struct c {
template <bool B> using t = int;
t<N> m;
};
};