blob: 74db2b80e70e1393e1431e8ec62f5b69c4f9a434 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// RUN: %clang_cc1 -std=c++11 -verify %s
struct B1 { // expected-note 2{{candidate}}
B1(int); // expected-note {{candidate}}
};
struct B2 { // expected-note 2{{candidate}}
B2(int); // expected-note {{candidate}}
};
struct D1 : B1, B2 { // expected-note 2{{candidate}}
using B1::B1; // expected-note 3{{inherited here}}
using B2::B2; // expected-note 3{{inherited here}}
};
D1 d1(0); // expected-error {{ambiguous}}
struct D2 : B1, B2 {
using B1::B1;
using B2::B2;
D2(int);
};
D2 d2(0); // ok
// The emergent behavior of implicit special members is a bit odd when
// inheriting from multiple base classes.
namespace default_ctor {
struct C;
struct D;
struct convert_to_D1 {
operator D&&();
};
struct convert_to_D2 {
operator D&&();
};
struct A { // expected-note 4{{candidate}}
A(); // expected-note {{candidate}}
A(C &&); // expected-note {{candidate}}
C &operator=(C&&); // expected-note {{candidate}}
A(D &&);
D &operator=(D&&); // expected-note {{candidate}}
A(convert_to_D2); // expected-note {{candidate}}
};
struct B { // expected-note 4{{candidate}}
B(); // expected-note {{candidate}}
B(C &&); // expected-note {{candidate}}
C &operator=(C&&); // expected-note {{candidate}}
B(D &&);
D &operator=(D&&); // expected-note {{candidate}}
B(convert_to_D2); // expected-note {{candidate}}
};
struct C : A, B {
using A::A;
using A::operator=;
using B::B;
using B::operator=;
};
struct D : A, B {
using A::A; // expected-note 5{{inherited here}}
using A::operator=;
using B::B; // expected-note 5{{inherited here}}
using B::operator=;
D(int);
D(const D&); // expected-note {{candidate}}
D &operator=(const D&); // expected-note {{candidate}}
};
C c;
void f(C c) {
C c2(static_cast<C&&>(c));
c = static_cast<C&&>(c);
}
// D does not declare D(), D(D&&), nor operator=(D&&), so the base class
// versions are inherited.
D d; // expected-error {{ambiguous}}
void f(D d) {
D d2(static_cast<D&&>(d)); // ok, ignores inherited constructors
D d3(convert_to_D1{}); // ok, ignores inherited constructors
D d4(convert_to_D2{}); // expected-error {{ambiguous}}
d = static_cast<D&&>(d); // expected-error {{ambiguous}}
}
struct Y;
struct X { // expected-note 2{{candidate}}
X();
X(volatile Y &); // expected-note {{constructor inherited from base class cannot be used to initialize from an argument of the derived class type}}
} x;
struct Y : X { using X::X; } volatile y; // expected-note 2{{candidate}}
struct Z : Y { using Y::Y; } volatile z; // expected-note 3{{candidate}} expected-note 5{{inherited here}}
Z z1(x); // ok
Z z2(y); // ok, Z is not reference-related to type of y
Z z3(z); // expected-error {{no match}}
}
|