OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash88.C
1 // PR c++/34397
2
3 template<typename T, int = T()[0]> struct A
4 {
5   typedef A<T> B;
6 };