PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash91.C
blob39575cd9f272d817951b0361bd5d93b2bacb70db
1 // PR c++/28293
3 template<int> void foo();
5 struct A
7   typedef void foo<0>(); // { dg-error "explicit template argument list not allowed" } 
8 };