2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / eh / catch3.C
blob884829288e46cc8a150a625a59febcececd88703
1 // PR c++/28250
2 // { dg-do compile }
4 template<int> void foo()
6   try {}
7   catch () {}  // { dg-error "type-specifier" }
10 template void foo<0>();