blob: b0b580b6aac9bddb537cf327bb66f0222ecded20 (
plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
typedef int INT;
class Foo {
Foo();
(Foo)(float) { }
explicit Foo(int); // expected-note {{previous declaration is here}}
Foo(const Foo&);
((Foo))(INT); // expected-error{{cannot be redeclared}}
Foo(Foo foo, int i = 17, int j = 42); // expected-error{{copy constructor must pass its first argument by reference}}
static Foo(short, short); // expected-error{{constructor cannot be declared 'static'}}
virtual Foo(double); // expected-error{{constructor cannot be declared 'virtual'}}
Foo(long) const; // expected-error{{'const' qualifier is not allowed on a constructor}}
int Foo(int, int); // expected-error{{constructor cannot have a return type}}
volatile Foo(float); // expected-error{{constructor cannot have a return type}}
};
Foo::Foo(const Foo&) { }
typedef struct {
int version;
} Anon;
extern const Anon anon;
extern "C" const Anon anon2;
// PR3188: The extern declaration complained about not having an appropriate
// constructor.
struct x;
extern x a;
// A similar case.
struct y {
y(int);
};
extern y b;
struct Length {
Length l() const { return *this; }
};
struct mmst_reg{
char mmst_reg[10];
};
// PR3948
namespace PR3948 {
// PR3948
class a {
public:
int b(int a());
};
int x();
void y() {
a z; z.b(x);
}
}
namespace A {
struct S {
S();
S(int);
void f1();
void f2();
operator int ();
~S();
};
}
A::S::S() {}
void A::S::f1() {}
struct S {};
A::S::S(int) {}
void A::S::f2() {}
A::S::operator int() { return 1; }
A::S::~S() {}
namespace PR38286 {
// FIXME: It'd be nice to give more consistent diagnostics for these cases
// (but they're all failing for somewhat different reasons...).
template<typename> struct A;
template<typename T> A<T>::A() {} // expected-error {{incomplete type 'A' named in nested name specifier}}
/*FIXME: needed to recover properly from previous error*/;
template<typename> struct B;
template<typename T> void B<T>::f() {} // expected-error {{out-of-line definition of 'f' from class 'B<type-parameter-0-0>'}}
template<typename> struct C; // expected-note {{non-type declaration found}}
template<typename T> C<T>::~C() {} // expected-error {{identifier 'C' after '~' in destructor name does not name a type}}
}
namespace GH121706 {
struct A {
*&A(); // expected-error {{invalid constructor declaration}}
};
struct B {
*&&B(); // expected-error {{invalid constructor declaration}}
};
struct C {
*const C(); // expected-error {{invalid constructor declaration}}
};
struct D {
*const *D(); // expected-error {{invalid constructor declaration}}
};
struct E {
*E::*E(); // expected-error {{invalid constructor declaration}}
};
struct F {
*F::*const F(); // expected-error {{invalid constructor declaration}}
};
struct G {
****G(); // expected-error {{invalid constructor declaration}}
};
struct H {
**H(const H &); // expected-error {{invalid constructor declaration}}
};
struct I {
*I(I &&); // expected-error {{invalid constructor declaration}}
};
struct J {
*&(J)(); // expected-error {{invalid constructor declaration}}
};
struct K {
**&&(K)(); // expected-error {{invalid constructor declaration}}
};
struct L {
*L(L&& other); // expected-error {{invalid constructor declaration}}
};
struct M {
*M(M& other); // expected-error {{invalid constructor declaration}}
};
struct N {
int N(); // expected-error {{constructor cannot have a return type}}
};
struct O {
static O(); // expected-error {{constructor cannot be declared 'static'}}
};
struct P {
explicit P();
};
struct Q {
constexpr Q();
};
struct R {
R();
friend R::R();
};
}
|