OSDN Git Service

2009-02-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / template-1.C
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.
6
7 // { dg-do compile }
8 // { dg-options "-W" }
9
10 template <int N> bool f() {
11   unsigned int i=0;
12   return i!=N;  // { dg-bogus "signed and unsigned" }
13 }
14
15 template bool f<2> ();