aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/error43.C
blob: 03f29d1f14ab05cab268955dc24e3dcb850d78eb (plain)
1
2
3
4
5
6
7
8
9
// PR c++/29363

template<int> void foo()
{
  throw A();			// { dg-message "declar" }
  struct A {} a;
}

template void foo<0>();		// { dg-message "required" }