// RUN: not %clang_cc1 -Werror -Weverything %s 2> %t// RUN: FileCheck < %t %sintf0(int,unsigned);intf0(intx,unsignedy){// CHECK: comparison of integers of different signs{{.*}} [-Werror,-Wsign-compare]returnx<y;// expected-error {{ : 'int' and 'unsigned int' }}}