Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / warn / template-1.C
blob04ea5ae323bc7d28df0330e291cfa59fd84d449e
1 //Origin: bangerth@dealii.org
2 //PR c++/11490
3 //Since N is know at instantiation time, there
4 // should be no warning about comparision between
5 // unsinged and signed interegers.
7 // { dg-do compile }
8 // { dg-options "-W" }
10 template <int N> bool f() {
11   unsigned int i=0;
12   return i!=N;  // { dg-bogus "signed and unsigned" }
15 template bool f<2> ();