(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
pr28114.C
// Test to make sure we do not ICE on this invalid program.

template<int> void foo(struct {}*); // { dg-message "" }

void bar()
{
  foo<0>(0);			// { dg-error "" }
}