aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr11492.c
blob: 86630995344c17ec5146efe3a07646dca213107d (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 * 100; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" "" } */
    { ; }

  return 0;
}