summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr11492.c
blob: 86435a83e79bbe56c29d2cb303f72a236dfb029f (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 of integer expressions of different signedness" } */
    { ; }

  return 0;
}