blob: e2fbc04bfc2cd716f969399943dab91f97a2110b (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b; /* { dg-bogus "signed and unsigned" } */
}
|