2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash89.C
blobf4cdaf9d9bd5dc47a0e4e279928cfb4223cc646f
1 // PR c++/34397
3 template<typename T, int = T()[0]> struct A // { dg-error "subscripted" }
5   typedef A<T> B;
6 };
8 A<int> a; // { dg-error "declaration" }
10 // { dg-prune-output "template argument 2 is invalid" }