Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -faccess-control -std=c++0x -Wsign-compare %s |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 2 | |
| 3 | // C++ rules for ?: are a lot stricter than C rules, and have to take into |
| 4 | // account more conversion options. |
| 5 | // This test runs in C++0x mode for the contextual conversion of the condition. |
| 6 | |
| 7 | struct ToBool { explicit operator bool(); }; |
| 8 | |
| 9 | struct B; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 10 | struct A { A(); A(const B&); }; // expected-note 2 {{candidate constructor}} |
| 11 | struct B { operator A() const; }; // expected-note 2 {{candidate function}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 12 | struct I { operator int(); }; |
| 13 | struct J { operator I(); }; |
| 14 | struct K { operator double(); }; |
| 15 | typedef void (*vfn)(); |
| 16 | struct F { operator vfn(); }; |
| 17 | struct G { operator vfn(); }; |
| 18 | |
| 19 | struct Base { |
| 20 | int trick(); |
| 21 | A trick() const; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 22 | void fn1(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 23 | }; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 24 | struct Derived : Base { |
| 25 | void fn2(); |
| 26 | }; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 27 | struct Convertible { operator Base&(); }; |
John McCall | 6b2accb | 2010-02-10 09:31:12 +0000 | [diff] [blame] | 28 | struct Priv : private Base {}; // expected-note 4 {{declared private here}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 29 | struct Mid : Base {}; |
| 30 | struct Fin : Mid, Derived {}; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 31 | typedef void (Derived::*DFnPtr)(); |
| 32 | struct ToMemPtr { operator DFnPtr(); }; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 33 | |
| 34 | struct BadDerived; |
| 35 | struct BadBase { operator BadDerived&(); }; |
| 36 | struct BadDerived : BadBase {}; |
| 37 | |
| 38 | struct Fields { |
| 39 | int i1, i2, b1 : 3, b2 : 3; |
| 40 | }; |
Sebastian Redl | 9bebfad | 2009-04-19 21:15:26 +0000 | [diff] [blame] | 41 | struct MixedFields { |
| 42 | int i; |
| 43 | volatile int vi; |
| 44 | const int ci; |
| 45 | const volatile int cvi; |
| 46 | }; |
| 47 | struct MixedFieldsDerived : MixedFields { |
| 48 | }; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 49 | |
| 50 | enum Enum { EVal }; |
| 51 | |
| 52 | struct Ambig { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 53 | operator short(); // expected-note 2 {{candidate function}} |
| 54 | operator signed char(); // expected-note 2 {{candidate function}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | void test() |
| 58 | { |
| 59 | // This function tests C++0x 5.16 |
| 60 | |
| 61 | // p1 (contextually convert to bool) |
| 62 | int i1 = ToBool() ? 0 : 1; |
| 63 | |
| 64 | // p2 (one or both void, and throwing) |
| 65 | i1 ? throw 0 : throw 1; |
| 66 | i1 ? test() : throw 1; |
| 67 | i1 ? throw 0 : test(); |
| 68 | i1 ? test() : test(); |
| 69 | i1 = i1 ? throw 0 : 0; |
| 70 | i1 = i1 ? 0 : throw 0; |
| 71 | i1 ? 0 : test(); // expected-error {{right operand to ? is void, but left operand is of type 'int'}} |
| 72 | i1 ? test() : 0; // expected-error {{left operand to ? is void, but right operand is of type 'int'}} |
| 73 | (i1 ? throw 0 : i1) = 0; // expected-error {{expression is not assignable}} |
| 74 | (i1 ? i1 : throw 0) = 0; // expected-error {{expression is not assignable}} |
| 75 | |
| 76 | // p3 (one or both class type, convert to each other) |
| 77 | // b1 (lvalues) |
| 78 | Base base; |
| 79 | Derived derived; |
| 80 | Convertible conv; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 81 | Base &bar1 = i1 ? base : derived; |
| 82 | Base &bar2 = i1 ? derived : base; |
| 83 | Base &bar3 = i1 ? base : conv; |
| 84 | Base &bar4 = i1 ? conv : base; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 85 | // these are ambiguous |
| 86 | BadBase bb; |
| 87 | BadDerived bd; |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 88 | (void)(i1 ? bb : bd); // expected-error {{conditional expression is ambiguous; 'BadBase' can be converted to 'BadDerived' and vice versa}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 89 | (void)(i1 ? bd : bb); // expected-error {{conditional expression is ambiguous}} |
| 90 | // curiously enough (and a defect?), these are not |
| 91 | // for rvalues, hierarchy takes precedence over other conversions |
| 92 | (void)(i1 ? BadBase() : BadDerived()); |
| 93 | (void)(i1 ? BadDerived() : BadBase()); |
| 94 | |
| 95 | // b2.1 (hierarchy stuff) |
| 96 | const Base constret(); |
| 97 | const Derived constder(); |
| 98 | // should use const overload |
| 99 | A a1((i1 ? constret() : Base()).trick()); |
| 100 | A a2((i1 ? Base() : constret()).trick()); |
| 101 | A a3((i1 ? constret() : Derived()).trick()); |
| 102 | A a4((i1 ? Derived() : constret()).trick()); |
| 103 | // should use non-const overload |
| 104 | i1 = (i1 ? Base() : Base()).trick(); |
| 105 | i1 = (i1 ? Base() : Base()).trick(); |
| 106 | i1 = (i1 ? Base() : Derived()).trick(); |
| 107 | i1 = (i1 ? Derived() : Base()).trick(); |
| 108 | // should fail: const lost |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 109 | (void)(i1 ? Base() : constder()); // expected-error {{incompatible operand types ('Base' and 'Derived const')}} |
| 110 | (void)(i1 ? constder() : Base()); // expected-error {{incompatible operand types ('Derived const' and 'Base')}} |
Sebastian Redl | 78eb874 | 2009-04-19 21:53:20 +0000 | [diff] [blame] | 111 | |
Sebastian Redl | 78eb874 | 2009-04-19 21:53:20 +0000 | [diff] [blame] | 112 | Priv priv; |
| 113 | Fin fin; |
John McCall | 6b2accb | 2010-02-10 09:31:12 +0000 | [diff] [blame] | 114 | (void)(i1 ? Base() : Priv()); // expected-error{{private base class}} |
| 115 | (void)(i1 ? Priv() : Base()); // expected-error{{private base class}} |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 116 | (void)(i1 ? Base() : Fin()); // expected-error{{ambiguous conversion from derived class 'Fin' to base class 'Base':}} |
| 117 | (void)(i1 ? Fin() : Base()); // expected-error{{ambiguous conversion from derived class 'Fin' to base class 'Base':}} |
John McCall | 6b2accb | 2010-02-10 09:31:12 +0000 | [diff] [blame] | 118 | (void)(i1 ? base : priv); // expected-error {{private base class}} |
| 119 | (void)(i1 ? priv : base); // expected-error {{private base class}} |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 120 | (void)(i1 ? base : fin); // expected-error {{ambiguous conversion from derived class 'Fin' to base class 'Base':}} |
| 121 | (void)(i1 ? fin : base); // expected-error {{ambiguous conversion from derived class 'Fin' to base class 'Base':}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 122 | |
| 123 | // b2.2 (non-hierarchy) |
| 124 | i1 = i1 ? I() : i1; |
| 125 | i1 = i1 ? i1 : I(); |
| 126 | I i2(i1 ? I() : J()); |
| 127 | I i3(i1 ? J() : I()); |
| 128 | // "the type [it] woud have if E2 were converted to an rvalue" |
| 129 | vfn pfn = i1 ? F() : test; |
| 130 | pfn = i1 ? test : F(); |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 131 | (void)(i1 ? A() : B()); // expected-error {{conversion from 'B' to 'A' is ambiguous}} |
| 132 | (void)(i1 ? B() : A()); // expected-error {{conversion from 'B' to 'A' is ambiguous}} |
| 133 | (void)(i1 ? 1 : Ambig()); // expected-error {{conversion from 'Ambig' to 'int' is ambiguous}} |
| 134 | (void)(i1 ? Ambig() : 1); // expected-error {{conversion from 'Ambig' to 'int' is ambiguous}} |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 135 | // By the way, this isn't an lvalue: |
| 136 | &(i1 ? i1 : i2); // expected-error {{address expression must be an lvalue or a function designator}} |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 137 | |
| 138 | // p4 (lvalue, same type) |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 139 | Fields flds; |
| 140 | int &ir1 = i1 ? flds.i1 : flds.i2; |
| 141 | (i1 ? flds.b1 : flds.i2) = 0; |
| 142 | (i1 ? flds.i1 : flds.b2) = 0; |
| 143 | (i1 ? flds.b1 : flds.b2) = 0; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 144 | |
| 145 | // p5 (conversion to built-in types) |
| 146 | // GCC 4.3 fails these |
| 147 | double d1 = i1 ? I() : K(); |
| 148 | pfn = i1 ? F() : G(); |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 149 | DFnPtr pfm; |
Sebastian Redl | 78eb874 | 2009-04-19 21:53:20 +0000 | [diff] [blame] | 150 | pfm = i1 ? DFnPtr() : &Base::fn1; |
| 151 | pfm = i1 ? &Base::fn1 : DFnPtr(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 152 | |
| 153 | // p6 (final conversions) |
| 154 | i1 = i1 ? i1 : ir1; |
| 155 | int *pi1 = i1 ? &i1 : 0; |
| 156 | pi1 = i1 ? 0 : &i1; |
John McCall | a2936be | 2010-03-19 18:53:26 +0000 | [diff] [blame] | 157 | i1 = i1 ? i1 : EVal; |
| 158 | i1 = i1 ? EVal : i1; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 159 | d1 = i1 ? 'c' : 4.0; |
| 160 | d1 = i1 ? 4.0 : 'c'; |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 161 | Base *pb = i1 ? (Base*)0 : (Derived*)0; |
| 162 | pb = i1 ? (Derived*)0 : (Base*)0; |
Sebastian Redl | 9bebfad | 2009-04-19 21:15:26 +0000 | [diff] [blame] | 163 | pfm = i1 ? &Base::fn1 : &Derived::fn2; |
| 164 | pfm = i1 ? &Derived::fn2 : &Base::fn1; |
| 165 | pfm = i1 ? &Derived::fn2 : 0; |
| 166 | pfm = i1 ? 0 : &Derived::fn2; |
| 167 | const int (MixedFieldsDerived::*mp1) = |
| 168 | i1 ? &MixedFields::ci : &MixedFieldsDerived::i; |
| 169 | const volatile int (MixedFields::*mp2) = |
| 170 | i1 ? &MixedFields::ci : &MixedFields::cvi; |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 171 | (void)(i1 ? &MixedFields::ci : &MixedFields::vi); |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 172 | // Conversion of primitives does not result in an lvalue. |
| 173 | &(i1 ? i1 : d1); // expected-error {{address expression must be an lvalue or a function designator}} |
| 174 | |
Anders Carlsson | 1d524c3 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 175 | (void)&(i1 ? flds.b1 : flds.i1); // expected-error {{address of bit-field requested}} |
| 176 | (void)&(i1 ? flds.i1 : flds.b1); // expected-error {{address of bit-field requested}} |
| 177 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 178 | |
| 179 | unsigned long test0 = 5; |
| 180 | test0 = test0 ? (long) test0 : test0; // expected-warning {{operands of ? are integers of different signs}} |
| 181 | test0 = test0 ? (int) test0 : test0; // expected-warning {{operands of ? are integers of different signs}} |
| 182 | test0 = test0 ? (short) test0 : test0; // expected-warning {{operands of ? are integers of different signs}} |
| 183 | test0 = test0 ? test0 : (long) test0; // expected-warning {{operands of ? are integers of different signs}} |
| 184 | test0 = test0 ? test0 : (int) test0; // expected-warning {{operands of ? are integers of different signs}} |
| 185 | test0 = test0 ? test0 : (short) test0; // expected-warning {{operands of ? are integers of different signs}} |
| 186 | test0 = test0 ? test0 : (long) 10; |
| 187 | test0 = test0 ? test0 : (int) 10; |
| 188 | test0 = test0 ? test0 : (short) 10; |
| 189 | test0 = test0 ? (long) 10 : test0; |
| 190 | test0 = test0 ? (int) 10 : test0; |
| 191 | test0 = test0 ? (short) 10 : test0; |
| 192 | |
| 193 | test0 = test0 ? EVal : test0; |
John McCall | a2936be | 2010-03-19 18:53:26 +0000 | [diff] [blame] | 194 | test0 = test0 ? EVal : (int) test0; |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 195 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 196 | // Note the thing that this does not test: since DR446, various situations |
| 197 | // *must* create a separate temporary copy of class objects. This can only |
| 198 | // be properly tested at runtime, though. |
| 199 | } |