Lines Matching refs:test0
38 unsigned long test0 = 5; in foo() local
39 …test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long… in foo()
40 …test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo()
41 …test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'sho… in foo()
42 …test0 = test0 ? test0 : (long) test0; // expected-warning {{operand of ? changes signedness: 'long… in foo()
43 …test0 = test0 ? test0 : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo()
44 …test0 = test0 ? test0 : (short) test0; // expected-warning {{operand of ? changes signedness: 'sho… in foo()
45 test0 = test0 ? test0 : (long) 10; in foo()
46 test0 = test0 ? test0 : (int) 10; in foo()
47 test0 = test0 ? test0 : (short) 10; in foo()
48 test0 = test0 ? (long) 10 : test0; in foo()
49 test0 = test0 ? (int) 10 : test0; in foo()
50 test0 = test0 ? (short) 10 : test0; in foo()
54 test0 = test0 ? EVal : test0; in foo()
55 test1 = test0 ? EVal : (int) test0; in foo()
56 test0 = test0 ? in foo()
58 … : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}} in foo()
60 …test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in foo()
61 …test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in foo()
65 …*(test0 ? const_int : nonconst_int) = 42; // expected-error {{read-only variable is not assignable… in foo()
66 …*(test0 ? nonconst_int : const_int) = 42; // expected-error {{read-only variable is not assignable… in foo()
71 sizeof(*(test0 ? incomplete : complete)); // expected-warning {{expression result unused}} in foo()
72 sizeof(*(test0 ? complete : incomplete)); // expected-warning {{expression result unused}} in foo()
76 …test0 ? adr2 : adr3; // expected-error{{conditional operator with the second and third operands of… in foo()
79 …(test0 ? (test0 ? adr2 : adr2) : nonconst_int); // expected-error{{conditional operator with the s… in foo()