aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/compare1.C
blob: e00592262c63d3b8b7a36a424e4a36e223818001 (plain)
1
2
3
4
5
6
7
8
9
10
/* -Wall is supposed to trigger -Wsign-compare for C++.  PR 10604.
   See also gcc.dg/compare7.c.  */

/* { dg-do compile } */
/* { dg-options "-Wall" } */

int f(unsigned a, int b)
{
  return a < b;  /* { dg-warning "signed and unsigned" } */
}