1 //Origin: bangerth@dealii.org
3 //Since N is know at instantiation time, there
4 // should be no warning about comparision between
5 // unsinged and signed interegers.
10 template <int N> bool f() {
12 return i!=N; // { dg-bogus "signed and unsigned" }
15 template bool f<2> ();