1 // PR c++/34397
2 
3 template<typename T, int = T()[0]> struct A
4 {
5   typedef A<T> B;
6 };
7