blob: c042834b2147b8a3adb640314b884947217b7974 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
Sebastian Redlf677ea32011-02-05 19:23:19 +00002
3// Tests related to constructor inheriting, but not specified in [class.inhctor]
4
5// [namespace.udecl]p8:
6// A using-declaration for a class member shall be a member-declaration.
7
8struct B1 {
9 B1(int);
10};
11
Stephen Hines651f13c2014-04-23 16:59:28 -070012using B1::B1; // expected-error {{using declaration cannot refer to class member}}
Sebastian Redlf677ea32011-02-05 19:23:19 +000013
Richard Smith07b0fdc2013-03-18 21:12:30 +000014// C++11 [namespace.udecl]p10:
Sebastian Redlf677ea32011-02-05 19:23:19 +000015// A using-declaration is a declaration and can therefore be used repeatedly
16// where (and only where) multiple declarations are allowed.
17
18struct I1 : B1 {
Richard Smith07b0fdc2013-03-18 21:12:30 +000019 using B1::B1; // expected-note {{previous using declaration}}
20 using B1::B1; // expected-error {{redeclaration of using decl}}
Sebastian Redlf677ea32011-02-05 19:23:19 +000021};
22
Richard Smith07b0fdc2013-03-18 21:12:30 +000023// C++11 [namespace.udecl]p3:
Sebastian Redlf677ea32011-02-05 19:23:19 +000024// In a using declaration used as a member-declaration, the nested-name-
25// specifier shall name a base class of the class being defined.
26// If such a using-declaration names a constructor, the nested-name-specifier
27// shall name a direct base class of the class being defined.
28
29struct D1 : I1 {
Stephen Hines651f13c2014-04-23 16:59:28 -070030 using B1::B1; // expected-error {{'B1' is not a direct base of 'D1', cannot inherit constructors}}
Sebastian Redlf677ea32011-02-05 19:23:19 +000031};
Richard Smithc5a89a12012-04-02 01:30:27 +000032
33template<typename T> struct A {};
34
35template<typename T> struct B : A<bool>, A<char> {
Richard Smith07b0fdc2013-03-18 21:12:30 +000036 using A<T>::A; // expected-error {{'A<double>::', which is not a base class of 'B<double>'}}
Richard Smithc5a89a12012-04-02 01:30:27 +000037};
38B<bool> bb;
39B<char> bc;
40B<double> bd; // expected-note {{here}}
41
42template<typename T> struct C : A<T> {
Richard Smith07b0fdc2013-03-18 21:12:30 +000043 using A<bool>::A; // expected-error {{'A<bool>::', which is not a base class of 'C<char>'}}
Richard Smithc5a89a12012-04-02 01:30:27 +000044};
45C<bool> cb;
46C<char> cc; // expected-note {{here}}
47
48template<typename T> struct D : A<T> {};
49template<typename T> struct E : D<T> {
Stephen Hines651f13c2014-04-23 16:59:28 -070050 using A<bool>::A; // expected-error {{'A<bool>' is not a direct base of 'E<bool>', cannot inherit}}
Richard Smithc5a89a12012-04-02 01:30:27 +000051};
52E<bool> eb; // expected-note {{here}}
53
54template<typename T> struct F : D<bool> {
Richard Smith07b0fdc2013-03-18 21:12:30 +000055 using A<T>::A; // expected-error {{'A<bool>' is not a direct base of 'F<bool>'}}
Richard Smithc5a89a12012-04-02 01:30:27 +000056};
57F<bool> fb; // expected-note {{here}}
Richard Smith4841ca52013-04-10 05:48:59 +000058
59template<typename T>
60struct G : T {
61 using T::T;
62 G(int &) : G(0) {}
63};
64G<B1> g(123);