blob: 93a6d302ef31b185d980963111c34a9e49f41e4b [file] [log] [blame]
Eli Friedmancef3a7b2012-11-02 01:34:28 +00001// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wmicrosoft -Wc++11-extensions -Wno-long-long -verify -fms-extensions -fexceptions -fcxx-exceptions
Douglas Gregor5c0ca522010-08-30 14:44:26 +00002
3
4// ::type_info is predeclared with forward class declartion
5void f(const type_info &a);
6
Francois Picheteedd4672011-03-19 23:05:18 +00007
8// Microsoft doesn't validate exception specification.
Francois Pichet0f161592011-05-24 02:11:43 +00009namespace microsoft_exception_spec {
10
Douglas Gregor5b6f7692010-08-30 15:04:51 +000011void foo(); // expected-note {{previous declaration}}
Francois Picheteedd4672011-03-19 23:05:18 +000012void foo() throw(); // expected-warning {{exception specification in declaration does not match previous declaration}}
Douglas Gregor5c0ca522010-08-30 14:44:26 +000013
Francois Picheteedd4672011-03-19 23:05:18 +000014void r6() throw(...); // expected-note {{previous declaration}}
15void r6() throw(int); // expected-warning {{exception specification in declaration does not match previous declaration}}
Douglas Gregor5b6f7692010-08-30 15:04:51 +000016
17struct Base {
18 virtual void f2();
19 virtual void f3() throw(...);
20};
21
22struct Derived : Base {
23 virtual void f2() throw(...);
24 virtual void f3();
25};
Douglas Gregorafac01d2010-09-01 16:29:03 +000026
Francois Pichet0f161592011-05-24 02:11:43 +000027class A {
28 virtual ~A() throw(); // expected-note {{overridden virtual function is here}}
29};
30
31class B : public A {
32 virtual ~B(); // expected-warning {{exception specification of overriding function is more lax than base version}}
33};
34
35}
Francois Pichet538e0d02010-09-08 11:32:25 +000036
37// MSVC allows type definition in anonymous union and struct
38struct A
39{
40 union
41 {
42 int a;
43 struct B // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
44 {
45 int c;
46 } d;
47
48 union C // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
49 {
50 int e;
51 int ee;
52 } f;
53
54 typedef int D; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
55 struct F; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
56 };
57
58 struct
59 {
60 int a2;
61
62 struct B2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
63 {
64 int c2;
65 } d2;
66
67 union C2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
68 {
69 int e2;
70 int ee2;
71 } f2;
72
73 typedef int D2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
74 struct F2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
75 };
76};
77
Douglas Gregorafac01d2010-09-01 16:29:03 +000078// __stdcall handling
79struct M {
80 int __stdcall addP();
81 float __stdcall subtractP();
82};
83
Francois Pichet3bd9aa42011-08-18 09:59:55 +000084// __unaligned handling
85typedef char __unaligned *aligned_type;
86
87
Douglas Gregorafac01d2010-09-01 16:29:03 +000088template<typename T> void h1(T (__stdcall M::* const )()) { }
89
90void m1() {
91 h1<int>(&M::addP);
92 h1(&M::subtractP);
93}
Francois Pichet8dc3abc2010-09-12 05:06:55 +000094
Francois Pichet842e7a22010-10-18 15:01:13 +000095
96
Francois Pichet5be38be2011-01-17 01:08:01 +000097
98
99void f(long long);
100void f(int);
101
102int main()
103{
104 // This is an ambiguous call in standard C++.
105 // This calls f(long long) in Microsoft mode because LL is always signed.
106 f(0xffffffffffffffffLL);
107 f(0xffffffffffffffffi64);
108}
Douglas Gregor86f208c2011-02-22 20:32:04 +0000109
110// Enumeration types with a fixed underlying type.
111const int seventeen = 17;
112typedef int Int;
113
114struct X0 {
Eli Friedmancef3a7b2012-11-02 01:34:28 +0000115 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a C++11 extension}}
Douglas Gregor86f208c2011-02-22 20:32:04 +0000116 enum E1 : seventeen;
117};
118
Eli Friedmancef3a7b2012-11-02 01:34:28 +0000119enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a C++11 extension}}
Douglas Gregor86f208c2011-02-22 20:32:04 +0000120 SomeValue = 0x100000000
121};
Francois Pichetb613cd62011-03-29 10:39:17 +0000122
123
124class AAA {
125__declspec(dllimport) void f(void) { }
126void f2(void);
127};
128
129__declspec(dllimport) void AAA::f2(void) { // expected-error {{dllimport attribute can be applied only to symbol}}
130
131}
132
133
134
Francois Pichet8d051e02011-04-10 03:03:52 +0000135template <class T>
136class BB {
137public:
138 void f(int g = 10 ); // expected-note {{previous definition is here}}
139};
140
141template <class T>
142void BB<T>::f(int g = 0) { } // expected-warning {{redefinition of default argument}}
143
Francois Pichet6943e9b2011-04-13 02:38:49 +0000144
Francois Pichet2e510a02011-04-22 08:14:00 +0000145
146extern void static_func();
147void static_func(); // expected-note {{previous declaration is here}}
148
149
150static void static_func() // expected-warning {{static declaration of 'static_func' follows non-static declaration}}
151{
152
Francois Picheta8ef3ac2011-05-08 22:52:41 +0000153}
154
155long function_prototype(int a);
156long (*function_ptr)(int a);
157
158void function_to_voidptr_conv() {
159 void *a1 = function_prototype;
160 void *a2 = &function_prototype;
Francois Pichetb594fac2011-05-08 23:15:10 +0000161 void *a3 = function_ptr;
Francois Picheta8ef3ac2011-05-08 22:52:41 +0000162}
Francois Pichet30aff5b2011-05-11 22:13:54 +0000163
164
165void pointer_to_integral_type_conv(char* ptr) {
166 char ch = (char)ptr;
167 short sh = (short)ptr;
168 ch = (char)ptr;
169 sh = (short)ptr;
170}
Francois Pichetb2ee8302011-05-23 03:43:44 +0000171
Francois Pichetb4746032011-06-01 04:14:20 +0000172
173namespace friend_as_a_forward_decl {
174
175class A {
176 class Nested {
177 friend class B;
178 B* b;
179 };
180 B* b;
181};
182B* global_b;
183
184
185void f()
186{
187 class Local {
188 friend class Z;
189 Z* b;
190 };
191 Z* b;
192}
193
Francois Pichetc985b882011-09-13 10:26:51 +0000194}
195
Douglas Gregora2b4e5d2011-10-17 17:09:53 +0000196struct PR11150 {
197 class X {
198 virtual void f() = 0;
199 };
200
201 int array[__is_abstract(X)? 1 : -1];
202};
Douglas Gregorb57791e2011-10-21 03:57:52 +0000203
204void f() { int __except = 0; }
205
Douglas Gregor75379452012-09-13 20:16:20 +0000206void ::f(); // expected-warning{{extra qualification on member 'f'}}
Dmitri Gribenko1b9e8f72013-02-12 17:27:41 +0000207
208class C {
209 C::C(); // expected-warning{{extra qualification on member 'C'}}
210};
John McCall76da55d2013-04-16 07:28:30 +0000211
212struct StructWithProperty {
213 __declspec(property(get=GetV)) int V1;
214 __declspec(property(put=SetV)) int V2;
215 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
216 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
217 __declspec(property(get=GetV, put=SetV)) int V5;
218
219 int GetV() { return 123; }
220 void SetV(int i) {}
221};
222void TestProperty() {
223 StructWithProperty sp;
224 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
225 sp.V1 = 12; // expected-error{{no setter defined for property 'V1'}}
226 int j = sp.V4; // expected-error{{no member named 'GetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable getter for property 'V4'}}
227 sp.V3 = 14; // expected-error{{no member named 'SetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable setter for property 'V3'}}
228 int k = sp.V5;
229 sp.V5 = k++;
230}
231
232/* 4 tests for PseudoObject, begin */
233struct SP1
234{
235 bool operator()() { return true; }
236};
237struct SP2
238{
239 __declspec(property(get=GetV)) SP1 V;
240 SP1 GetV() { return SP1(); }
241};
242void TestSP2() {
243 SP2 sp2;
244 bool b = sp2.V();
245}
246
247struct SP3 {
248 template <class T>
249 void f(T t) {}
250};
251template <class T>
252struct SP4
253{
254 __declspec(property(get=GetV)) int V;
255 int GetV() { return 123; }
256 void f() { SP3 s2; s2.f(V); }
257};
258void TestSP4() {
259 SP4<int> s;
260 s.f();
261}
262
263template <class T>
264struct SP5
265{
266 __declspec(property(get=GetV)) T V;
267 int GetV() { return 123; }
268 void f() { int *p = new int[V]; }
269};
270
271template <class T>
272struct SP6
273{
274public:
275 __declspec(property(get=GetV)) T V;
276 T GetV() { return 123; }
277 void f() { int t = V; }
278};
279void TestSP6() {
280 SP6<int> c;
281 c.f();
282}
283/* 4 tests for PseudoObject, end */
284
285// Property access: explicit, implicit, with Qualifier
286struct SP7 {
287 __declspec(property(get=GetV, put=SetV)) int V;
288 int GetV() { return 123; }
289 void SetV(int v) {}
290
291 void ImplicitAccess() { int i = V; V = i; }
292 void ExplicitAccess() { int i = this->V; this->V = i; }
293};
294struct SP8: public SP7 {
295 void AccessWithQualifier() { int i = SP7::V; SP7::V = i; }
296};
297
298// Property usage
299template <class T>
300struct SP9 {
301 __declspec(property(get=GetV, put=SetV)) T V;
302 T GetV() { return 0; }
303 void SetV(T v) {}
304 void f() { V = this->V; V < this->V; }
John McCalld314abe2013-04-16 22:32:04 +0000305 void g() { V++; }
306 void h() { V*=2; }
John McCall76da55d2013-04-16 07:28:30 +0000307};
308struct SP10 {
309 SP10(int v) {}
310 bool operator<(const SP10& v) { return true; }
311 SP10 operator*(int v) { return *this; }
John McCalld314abe2013-04-16 22:32:04 +0000312 SP10 operator+(int v) { return *this; }
John McCall76da55d2013-04-16 07:28:30 +0000313 SP10& operator=(const SP10& v) { return *this; }
314};
315void TestSP9() {
316 SP9<int> c;
317 int i = c.V; // Decl initializer
318 i = c.V; // Binary op operand
319 c.SetV(c.V); // CallExpr arg
320 int *p = new int[c.V + 1]; // Array size
321 p[c.V] = 1; // Array index
322
323 c.V = 123; // Setter
324
325 c.V++; // Unary op operand
326 c.V *= 2; // Unary op operand
327
328 SP9<int*> c2;
329 c2.V[0] = 123; // Array
330
331 SP9<SP10> c3;
332 c3.f(); // Overloaded binary op operand
John McCalld314abe2013-04-16 22:32:04 +0000333 c3.g(); // Overloaded incdec op operand
334 c3.h(); // Overloaded unary op operand
John McCall76da55d2013-04-16 07:28:30 +0000335}
Aaron Ballman76eed422013-05-30 16:20:00 +0000336
337union u {
338 int *i1;
339 int &i2; // expected-warning {{union member 'i2' has reference type 'int &', which is a Microsoft extension}}
340};