blob: 6644042e24ee01d27da78eb4d91ff724f4346bc5 [file] [log] [blame]
Daniel Dunbarbe1aa412011-09-29 01:58:05 +00001// RUN: %clang_cc1 -verify -Wno-error=sign-compare %s
2// RUN: %clang_cc1 -verify -Wsign-compare -w -Wno-error=sign-compare %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00003// expected-no-diagnostics
Daniel Dunbarbe1aa412011-09-29 01:58:05 +00004
5int f0(int x, unsigned y) {
6 return x < y;
7}