aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/pr11492.C
blob: d23595f2d58dbfbc3d7cc83d7e21b4c260c56018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR11492 
// { dg-do compile }
// { dg-options "-Wsign-compare" }
int main( void )
{
  unsigned int a;
  unsigned char b;
  for ( a = 0, b = 2; a > b * 1000; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" } */
    { ; }

  return 0;
}