blob: 4b1ee7542158d085dca61ed50580b1b24cdd30da [file] [log] [blame]
John McCall88c1dfc2011-06-24 23:30:52 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wsign-conversion %s
2
3// PR9345: make a subgroup of -Wconversion for signedness changes
4
5void test(int x) {
6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}}
7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
8}