OSDN Git Service

PR c++/31598
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / pr28114.C
1
2 // Test to make sure we do not ICE on this invalid program.
3
4 template<int> void foo(struct {}*); // { dg-error "" }
5
6 void bar()
7 {
8   foo<0>(0); // { dg-error "" }
9 }