1 // PR c++/96805
2 // { dg-do compile { target c++11 } }
3 
4 template <typename T> class a {
5   template <int N> struct c {
6     template <bool B> using t = int;
7     t<N> m;
8   };
9 };
10