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