Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 2 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 3 | namespace test0 { |
| 4 | struct BASE { |
| 5 | operator int &(); // expected-note {{candidate function}} |
| 6 | }; |
| 7 | struct BASE1 { |
| 8 | operator int &(); // expected-note {{candidate function}} |
| 9 | }; |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 10 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 11 | struct B : public BASE, BASE1 {}; |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 12 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 13 | extern B f(); |
| 14 | B b1; |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 15 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 16 | void func(const int ci, const char cc); // expected-note {{candidate function}} |
| 17 | void func(const char ci, const B b); // expected-note {{candidate function}} |
| 18 | void func(const B b, const int ci); // expected-note {{candidate function}} |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 19 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 20 | const int Test1() { |
| 21 | func(b1, f()); // expected-error {{call to 'func' is ambiguous}} |
| 22 | return f(); // expected-error {{conversion from 'struct test0::B' to 'int const' is ambiguous}} |
| 23 | } |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame^] | 24 | |
| 25 | // This used to crash when comparing the two operands. |
| 26 | void func2(const char cc); // expected-note {{candidate function}} |
| 27 | void func2(const int ci); // expected-note {{candidate function}} |
| 28 | void Test2() { |
| 29 | func2(b1); // expected-error {{call to 'func2' is ambiguous}} |
| 30 | } |
Fariborz Jahanian | 455acd9 | 2009-09-22 19:53:15 +0000 | [diff] [blame] | 31 | } |
| 32 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 33 | namespace test1 { |
| 34 | struct E; |
| 35 | struct A { |
| 36 | A (E&); |
| 37 | }; |
Fariborz Jahanian | 99d6c44 | 2009-09-28 19:06:58 +0000 | [diff] [blame] | 38 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 39 | struct E { |
| 40 | operator A (); |
| 41 | }; |
Fariborz Jahanian | 99d6c44 | 2009-09-28 19:06:58 +0000 | [diff] [blame] | 42 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 43 | struct C { |
| 44 | C (E&); |
| 45 | }; |
Fariborz Jahanian | 99d6c44 | 2009-09-28 19:06:58 +0000 | [diff] [blame] | 46 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 47 | void f1(A); // expected-note {{candidate function}} |
| 48 | void f1(C); // expected-note {{candidate function}} |
Fariborz Jahanian | 99d6c44 | 2009-09-28 19:06:58 +0000 | [diff] [blame] | 49 | |
John McCall | 9a0e530 | 2010-01-08 18:40:32 +0000 | [diff] [blame] | 50 | void Test2() |
| 51 | { |
| 52 | E b; |
| 53 | f1(b); // expected-error {{call to 'f1' is ambiguous}} |
| 54 | // ambiguous because b -> C via constructor and |
| 55 | // b → A via constructor or conversion function. |
| 56 | } |
Fariborz Jahanian | 99d6c44 | 2009-09-28 19:06:58 +0000 | [diff] [blame] | 57 | } |
| 58 | |