aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/error-recovery3.C
blob: f8fd94b9db92f0b62857720236ed74d00e8500c5 (plain)
1
2
3
4
5
6
7
8
// PR c++/48212

template < bool > void
foo ()
{
  const bool b =;		// { dg-error "" }
  foo < b > ();			// { dg-error "" }
}