Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / crash88.C
blob438ab90ccddad6581a9a21a4b4f2f595c5571133
1 // PR c++/34397
3 template<typename T, int = T()[0]> struct A
5   typedef A<T> B;
6 };