1 // PR c++/48212
2 
3 template < bool > void
foo()4 foo ()
5 {
6   const bool b =;		// { dg-error "" }
7   foo < b > ();			// { dg-error "" }
8 }
9