Richard Smith | 9ca5c42 | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 2 | // |
| 3 | // Note: [class.inhctor] was removed by P0136R1. This tests the new behavior |
| 4 | // for the wording that used to be there. |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 5 | |
| 6 | struct B1 { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 7 | B1(int); // expected-note 3{{target of using}} |
| 8 | B1(int, int); // expected-note 3{{target of using}} |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 9 | }; |
| 10 | struct D1 : B1 { |
Richard Smith | c2bc61b | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 11 | using B1::B1; |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 12 | }; |
| 13 | D1 d1a(1), d1b(1, 1); |
| 14 | |
| 15 | D1 fd1() { return 1; } |
| 16 | |
Richard Smith | 836a3b4 | 2017-01-13 20:46:54 +0000 | [diff] [blame] | 17 | struct B2 { |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 18 | explicit B2(int, int = 0, int = 0); |
| 19 | }; |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 20 | struct D2 : B2 { // expected-note 2{{candidate constructor}} |
Richard Smith | 836a3b4 | 2017-01-13 20:46:54 +0000 | [diff] [blame] | 21 | using B2::B2; |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 22 | }; |
| 23 | D2 d2a(1), d2b(1, 1), d2c(1, 1, 1); |
| 24 | |
| 25 | D2 fd2() { return 1; } // expected-error {{no viable conversion}} |
| 26 | |
Richard Smith | 836a3b4 | 2017-01-13 20:46:54 +0000 | [diff] [blame] | 27 | struct B3 { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 28 | B3(void*); // expected-note {{candidate}} |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 29 | }; |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 30 | struct D3 : B3 { // expected-note 2{{candidate constructor}} |
Richard Smith | 836a3b4 | 2017-01-13 20:46:54 +0000 | [diff] [blame] | 31 | using B3::B3; // expected-note {{inherited here}} |
Sebastian Redl | 0890502 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 32 | }; |
| 33 | D3 fd3() { return 1; } // expected-error {{no viable conversion}} |
Richard Smith | 23d5587 | 2012-04-02 01:30:27 +0000 | [diff] [blame] | 34 | |
| 35 | template<typename T> struct T1 : B1 { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 36 | using B1::B1; // expected-note 2{{using declaration}} |
Richard Smith | 23d5587 | 2012-04-02 01:30:27 +0000 | [diff] [blame] | 37 | }; |
| 38 | template<typename T> struct T2 : T1<T> { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 39 | using T1<int>::T1; // expected-note 2{{using declaration}} |
Richard Smith | 23d5587 | 2012-04-02 01:30:27 +0000 | [diff] [blame] | 40 | }; |
| 41 | template<typename T> struct T3 : T1<int> { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 42 | using T1<T>::T1; // expected-note 2{{using declaration}} |
Richard Smith | 23d5587 | 2012-04-02 01:30:27 +0000 | [diff] [blame] | 43 | }; |
| 44 | struct U { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 45 | // [dcl.meaning]p1: "the member shall not merely hav ebeen introduced by a |
| 46 | // using-declaration in the scope of the class [...] nominated by the |
| 47 | // nested-name-specifier of the declarator-id" |
| 48 | friend T1<int>::T1(int); // expected-error {{cannot befriend target of using declaration}} |
| 49 | friend T1<int>::T1(int, int); // expected-error {{cannot befriend target of using declaration}} |
| 50 | friend T2<int>::T2(int); // expected-error {{cannot befriend target of using declaration}} |
| 51 | friend T2<int>::T2(int, int); // expected-error {{cannot befriend target of using declaration}} |
| 52 | friend T3<int>::T3(int); // expected-error {{cannot befriend target of using declaration}} |
| 53 | friend T3<int>::T3(int, int); // expected-error {{cannot befriend target of using declaration}} |
Richard Smith | 23d5587 | 2012-04-02 01:30:27 +0000 | [diff] [blame] | 54 | }; |
Richard Smith | 185be18 | 2013-04-10 05:48:59 +0000 | [diff] [blame] | 55 | |
| 56 | struct B4 { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 57 | template<typename T> explicit B4(T, int = 0); // expected-note 2{{here}} |
Richard Smith | 185be18 | 2013-04-10 05:48:59 +0000 | [diff] [blame] | 58 | }; |
| 59 | template<typename T> struct T4 : B4 { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 60 | using B4::B4; |
Richard Smith | 185be18 | 2013-04-10 05:48:59 +0000 | [diff] [blame] | 61 | template<typename U> T4(U); |
| 62 | }; |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 63 | template<typename T> struct U4 : T4<T> { |
| 64 | using T4<T>::T4; |
| 65 | }; |
Richard Smith | 185be18 | 2013-04-10 05:48:59 +0000 | [diff] [blame] | 66 | T4<void> t4a = {0}; |
| 67 | T4<void> t4b = {0, 0}; // expected-error {{chosen constructor is explicit}} |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 68 | U4<void> u4a = {0}; |
| 69 | U4<void> u4b = {0, 0}; // expected-error {{chosen constructor is explicit}} |