blob: 3d11c20148aad0611e23913f96f7b23327742952 [file] [log] [blame]
Eli Friedman0d0355ab2012-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 Gregor2b1bbec2010-08-30 14:44:26 +00002
3
Francois Pichet13b4e682011-03-19 23:05:18 +00004// Microsoft doesn't validate exception specification.
Francois Picheta8032e92011-05-24 02:11:43 +00005namespace microsoft_exception_spec {
6
Douglas Gregorf62c5292010-08-30 15:04:51 +00007void foo(); // expected-note {{previous declaration}}
Francois Pichet13b4e682011-03-19 23:05:18 +00008void foo() throw(); // expected-warning {{exception specification in declaration does not match previous declaration}}
Douglas Gregor2b1bbec2010-08-30 14:44:26 +00009
Francois Pichet13b4e682011-03-19 23:05:18 +000010void r6() throw(...); // expected-note {{previous declaration}}
11void r6() throw(int); // expected-warning {{exception specification in declaration does not match previous declaration}}
Douglas Gregorf62c5292010-08-30 15:04:51 +000012
13struct Base {
14 virtual void f2();
15 virtual void f3() throw(...);
16};
17
18struct Derived : Base {
19 virtual void f2() throw(...);
20 virtual void f3();
21};
Douglas Gregoreece0ea2010-09-01 16:29:03 +000022
Francois Picheta8032e92011-05-24 02:11:43 +000023class A {
24 virtual ~A() throw(); // expected-note {{overridden virtual function is here}}
25};
26
27class B : public A {
28 virtual ~B(); // expected-warning {{exception specification of overriding function is more lax than base version}}
29};
30
31}
Francois Pichet4ad4b582010-09-08 11:32:25 +000032
33// MSVC allows type definition in anonymous union and struct
34struct A
35{
Aaron Ballman3e424b52013-12-26 18:30:57 +000036 union
Francois Pichet4ad4b582010-09-08 11:32:25 +000037 {
38 int a;
39 struct B // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
Aaron Ballman3e424b52013-12-26 18:30:57 +000040 {
Francois Pichet4ad4b582010-09-08 11:32:25 +000041 int c;
42 } d;
43
44 union C // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
45 {
46 int e;
47 int ee;
48 } f;
49
50 typedef int D; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
51 struct F; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
52 };
53
54 struct
55 {
56 int a2;
57
58 struct B2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
59 {
60 int c2;
61 } d2;
Aaron Ballman3e424b52013-12-26 18:30:57 +000062
Francois Pichet4ad4b582010-09-08 11:32:25 +000063 union C2 // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
64 {
65 int e2;
66 int ee2;
67 } f2;
68
69 typedef int D2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
70 struct F2; // expected-warning {{types declared in an anonymous struct are a Microsoft extension}}
71 };
72};
73
Douglas Gregoreece0ea2010-09-01 16:29:03 +000074// __stdcall handling
75struct M {
76 int __stdcall addP();
Aaron Ballman3e424b52013-12-26 18:30:57 +000077 float __stdcall subtractP();
Douglas Gregoreece0ea2010-09-01 16:29:03 +000078};
79
Francois Pichet17ed0202011-08-18 09:59:55 +000080// __unaligned handling
81typedef char __unaligned *aligned_type;
Nico Rieck3e1ee832014-12-04 23:30:25 +000082typedef struct UnalignedTag { int f; } __unaligned *aligned_type2;
Francois Pichet17ed0202011-08-18 09:59:55 +000083
84
Douglas Gregoreece0ea2010-09-01 16:29:03 +000085template<typename T> void h1(T (__stdcall M::* const )()) { }
86
87void m1() {
88 h1<int>(&M::addP);
89 h1(&M::subtractP);
Aaron Ballman3e424b52013-12-26 18:30:57 +000090}
Francois Pichet488b4a72010-09-12 05:06:55 +000091
Francois Picheta3108062010-10-18 15:01:13 +000092
93
Francois Pichet7d92ee32011-01-17 01:08:01 +000094
95
96void f(long long);
97void f(int);
Aaron Ballman3e424b52013-12-26 18:30:57 +000098
Francois Pichet7d92ee32011-01-17 01:08:01 +000099int main()
100{
101 // This is an ambiguous call in standard C++.
102 // This calls f(long long) in Microsoft mode because LL is always signed.
103 f(0xffffffffffffffffLL);
104 f(0xffffffffffffffffi64);
105}
Douglas Gregora1aec292011-02-22 20:32:04 +0000106
107// Enumeration types with a fixed underlying type.
108const int seventeen = 17;
109typedef int Int;
110
111struct X0 {
Eli Friedman0d0355ab2012-11-02 01:34:28 +0000112 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a C++11 extension}}
Douglas Gregora1aec292011-02-22 20:32:04 +0000113 enum E1 : seventeen;
114};
115
Eli Friedman0d0355ab2012-11-02 01:34:28 +0000116enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a C++11 extension}}
Douglas Gregora1aec292011-02-22 20:32:04 +0000117 SomeValue = 0x100000000
118};
Francois Pichet3096d202011-03-29 10:39:17 +0000119
120
121class AAA {
122__declspec(dllimport) void f(void) { }
Nico Rieck82f0b062014-03-31 14:56:15 +0000123void f2(void); // expected-note{{previous declaration is here}}
Francois Pichet3096d202011-03-29 10:39:17 +0000124};
125
Hans Wennborgb0f2f142014-05-15 22:07:49 +0000126__declspec(dllimport) void AAA::f2(void) { // expected-error{{dllimport cannot be applied to non-inline function definition}}
Nico Rieck82f0b062014-03-31 14:56:15 +0000127 // expected-error@-1{{redeclaration of 'AAA::f2' cannot add 'dllimport' attribute}}
Francois Pichet3096d202011-03-29 10:39:17 +0000128
129}
130
131
132
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000133template <class T>
134class BB {
135public:
136 void f(int g = 10 ); // expected-note {{previous definition is here}}
137};
138
139template <class T>
140void BB<T>::f(int g = 0) { } // expected-warning {{redefinition of default argument}}
141
Francois Pichet48c946e2011-04-13 02:38:49 +0000142
Francois Pichete900b102011-04-22 08:14:00 +0000143
144extern void static_func();
145void static_func(); // expected-note {{previous declaration is here}}
146
147
David Majnemer5b63fa02014-06-18 23:26:25 +0000148static void static_func() // expected-warning {{redeclaring non-static 'static_func' as static is a Microsoft extension}}
Francois Pichete900b102011-04-22 08:14:00 +0000149{
150
Francois Pichetbc6ebb52011-05-08 22:52:41 +0000151}
152
David Majnemer5b63fa02014-06-18 23:26:25 +0000153extern const int static_var; // expected-note {{previous declaration is here}}
154static const int static_var = 3; // expected-warning {{redeclaring non-static 'static_var' as static is a Microsoft extension}}
155
Francois Pichetbc6ebb52011-05-08 22:52:41 +0000156long function_prototype(int a);
157long (*function_ptr)(int a);
158
159void function_to_voidptr_conv() {
160 void *a1 = function_prototype;
161 void *a2 = &function_prototype;
Francois Picheta7c8da42011-05-08 23:15:10 +0000162 void *a3 = function_ptr;
Francois Pichetbc6ebb52011-05-08 22:52:41 +0000163}
Francois Pichetb796b632011-05-11 22:13:54 +0000164
165
166void pointer_to_integral_type_conv(char* ptr) {
167 char ch = (char)ptr;
168 short sh = (short)ptr;
169 ch = (char)ptr;
170 sh = (short)ptr;
Francois Pichetefb1af92011-05-23 03:43:44 +0000171
Hans Wennborg15439bc2013-06-06 09:16:36 +0000172 // These are valid C++.
173 bool b = (bool)ptr;
174 b = static_cast<bool>(ptr);
175
176 // This is bad.
177 b = reinterpret_cast<bool>(ptr); // expected-error {{cast from pointer to smaller type 'bool' loses information}}
178}
Francois Pichete37eeba2011-06-01 04:14:20 +0000179
Douglas Gregor50cefbf2011-10-17 17:09:53 +0000180struct PR11150 {
181 class X {
182 virtual void f() = 0;
183 };
184
185 int array[__is_abstract(X)? 1 : -1];
186};
Douglas Gregor60060d62011-10-21 03:57:52 +0000187
188void f() { int __except = 0; }
189
Douglas Gregor43bc0362012-09-13 20:16:20 +0000190void ::f(); // expected-warning{{extra qualification on member 'f'}}
Dmitri Gribenkod1c91f12013-02-12 17:27:41 +0000191
192class C {
193 C::C(); // expected-warning{{extra qualification on member 'C'}}
194};
John McCall5e77d762013-04-16 07:28:30 +0000195
196struct StructWithProperty {
197 __declspec(property(get=GetV)) int V1;
198 __declspec(property(put=SetV)) int V2;
199 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
200 __declspec(property(get=GetV_NotExist, put=SetV)) int V4;
201 __declspec(property(get=GetV, put=SetV)) int V5;
202
203 int GetV() { return 123; }
204 void SetV(int i) {}
205};
206void TestProperty() {
207 StructWithProperty sp;
208 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
209 sp.V1 = 12; // expected-error{{no setter defined for property 'V1'}}
210 int j = sp.V4; // expected-error{{no member named 'GetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable getter for property 'V4'}}
211 sp.V3 = 14; // expected-error{{no member named 'SetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable setter for property 'V3'}}
212 int k = sp.V5;
213 sp.V5 = k++;
214}
215
216/* 4 tests for PseudoObject, begin */
217struct SP1
218{
219 bool operator()() { return true; }
220};
221struct SP2
222{
223 __declspec(property(get=GetV)) SP1 V;
224 SP1 GetV() { return SP1(); }
225};
226void TestSP2() {
227 SP2 sp2;
228 bool b = sp2.V();
229}
230
231struct SP3 {
232 template <class T>
233 void f(T t) {}
234};
235template <class T>
236struct SP4
237{
238 __declspec(property(get=GetV)) int V;
239 int GetV() { return 123; }
240 void f() { SP3 s2; s2.f(V); }
241};
242void TestSP4() {
243 SP4<int> s;
244 s.f();
245}
246
247template <class T>
248struct SP5
249{
250 __declspec(property(get=GetV)) T V;
251 int GetV() { return 123; }
252 void f() { int *p = new int[V]; }
253};
254
255template <class T>
256struct SP6
257{
258public:
259 __declspec(property(get=GetV)) T V;
260 T GetV() { return 123; }
261 void f() { int t = V; }
262};
263void TestSP6() {
264 SP6<int> c;
265 c.f();
266}
267/* 4 tests for PseudoObject, end */
268
269// Property access: explicit, implicit, with Qualifier
270struct SP7 {
271 __declspec(property(get=GetV, put=SetV)) int V;
272 int GetV() { return 123; }
273 void SetV(int v) {}
274
275 void ImplicitAccess() { int i = V; V = i; }
276 void ExplicitAccess() { int i = this->V; this->V = i; }
277};
278struct SP8: public SP7 {
279 void AccessWithQualifier() { int i = SP7::V; SP7::V = i; }
280};
281
282// Property usage
283template <class T>
284struct SP9 {
285 __declspec(property(get=GetV, put=SetV)) T V;
286 T GetV() { return 0; }
287 void SetV(T v) {}
Richard Trieu99e1c952014-03-11 03:11:08 +0000288 bool f() { V = this->V; return V < this->V; }
John McCall0d9dd732013-04-16 22:32:04 +0000289 void g() { V++; }
290 void h() { V*=2; }
John McCall5e77d762013-04-16 07:28:30 +0000291};
292struct SP10 {
293 SP10(int v) {}
294 bool operator<(const SP10& v) { return true; }
295 SP10 operator*(int v) { return *this; }
John McCall0d9dd732013-04-16 22:32:04 +0000296 SP10 operator+(int v) { return *this; }
John McCall5e77d762013-04-16 07:28:30 +0000297 SP10& operator=(const SP10& v) { return *this; }
298};
299void TestSP9() {
300 SP9<int> c;
301 int i = c.V; // Decl initializer
302 i = c.V; // Binary op operand
303 c.SetV(c.V); // CallExpr arg
304 int *p = new int[c.V + 1]; // Array size
305 p[c.V] = 1; // Array index
306
307 c.V = 123; // Setter
308
309 c.V++; // Unary op operand
310 c.V *= 2; // Unary op operand
311
312 SP9<int*> c2;
313 c2.V[0] = 123; // Array
314
315 SP9<SP10> c3;
316 c3.f(); // Overloaded binary op operand
John McCall0d9dd732013-04-16 22:32:04 +0000317 c3.g(); // Overloaded incdec op operand
318 c3.h(); // Overloaded unary op operand
John McCall5e77d762013-04-16 07:28:30 +0000319}
Aaron Ballmaned0ae1d2013-05-30 16:20:00 +0000320
321union u {
322 int *i1;
323 int &i2; // expected-warning {{union member 'i2' has reference type 'int &', which is a Microsoft extension}}
324};
Reid Kleckner0a0c8892013-06-19 16:37:23 +0000325
326// Property getter using reference.
327struct SP11 {
328 __declspec(property(get=GetV)) int V;
329 int _v;
330 int& GetV() { return _v; }
331 void UseV();
332 void TakePtr(int *) {}
333 void TakeRef(int &) {}
334 void TakeVal(int) {}
335};
336
337void SP11::UseV() {
338 TakePtr(&V);
339 TakeRef(V);
340 TakeVal(V);
341}
Aaron Ballman2a6febc2013-06-26 21:28:44 +0000342
343struct StructWithUnnamedMember {
344 __declspec(property(get=GetV)) int : 10; // expected-error {{anonymous property is not supported}}
345};
Douglas Gregorf83b4ea2013-06-27 20:42:30 +0000346
Reid Kleckner85c7e0a2015-02-24 20:29:40 +0000347struct MSPropertyClass {
348 int get() { return 42; }
349 int __declspec(property(get = get)) n;
350};
351
352int *f(MSPropertyClass &x) {
353 return &x.n; // expected-error {{address of property expression requested}}
354}
355int MSPropertyClass::*g() {
356 return &MSPropertyClass::n; // expected-error {{address of property expression requested}}
357}
358
Douglas Gregorf83b4ea2013-06-27 20:42:30 +0000359namespace rdar14250378 {
360 class Bar {};
Aaron Ballman3e424b52013-12-26 18:30:57 +0000361
Douglas Gregorf83b4ea2013-06-27 20:42:30 +0000362 namespace NyNamespace {
363 class Foo {
364 public:
365 Bar* EnsureBar();
366 };
Aaron Ballman3e424b52013-12-26 18:30:57 +0000367
Douglas Gregorf83b4ea2013-06-27 20:42:30 +0000368 class Baz : public Foo {
369 public:
370 friend class Bar;
371 };
Aaron Ballman3e424b52013-12-26 18:30:57 +0000372
Douglas Gregorf83b4ea2013-06-27 20:42:30 +0000373 Bar* Foo::EnsureBar() {
374 return 0;
375 }
376 }
377}
David Majnemera5433082013-10-18 00:33:31 +0000378
379// expected-error@+1 {{'sealed' keyword not permitted with interface types}}
380__interface InterfaceWithSealed sealed {
381};
382
383struct SomeBase {
384 virtual void OverrideMe();
385
386 // expected-note@+2 {{overridden virtual function is here}}
387 // expected-warning@+1 {{'sealed' keyword is a Microsoft extension}}
Fariborz Jahanianf920a0a2014-10-27 19:11:51 +0000388 virtual void SealedFunction() sealed; // expected-note {{overridden virtual function is here}}
David Majnemera5433082013-10-18 00:33:31 +0000389};
390
391// expected-note@+2 {{'SealedType' declared here}}
392// expected-warning@+1 {{'sealed' keyword is a Microsoft extension}}
393struct SealedType sealed : SomeBase {
Fariborz Jahanianf920a0a2014-10-27 19:11:51 +0000394 // expected-error@+2 {{declaration of 'SealedFunction' overrides a 'sealed' function}}
395 // FIXME. warning can be suppressed if we're also issuing error for overriding a 'final' function.
396 virtual void SealedFunction(); // expected-warning {{'SealedFunction' overrides a member function but is not marked 'override'}}
David Majnemera5433082013-10-18 00:33:31 +0000397
398 // expected-warning@+1 {{'override' keyword is a C++11 extension}}
399 virtual void OverrideMe() override;
400};
401
402// expected-error@+1 {{base 'SealedType' is marked 'sealed'}}
403struct InheritFromSealed : SealedType {};
Alp Tokerd3f79c52013-11-24 20:24:54 +0000404
405void AfterClassBody() {
406 // expected-warning@+1 {{attribute 'deprecated' is ignored, place it after "struct" to apply attribute to type declaration}}
407 struct D {} __declspec(deprecated);
408
409 struct __declspec(align(4)) S {} __declspec(align(8)) s1;
410 S s2;
411 _Static_assert(__alignof(S) == 4, "");
412 _Static_assert(__alignof(s1) == 8, "");
413 _Static_assert(__alignof(s2) == 4, "");
414}
Kaelyn Takata26487022015-10-01 22:38:51 +0000415
416namespace PR24246 {
417template <typename TX> struct A {
418 template <bool> struct largest_type_select;
419 // expected-warning@+1 {{explicit specialization of 'largest_type_select' within class scope is a Microsoft extension}}
420 template <> struct largest_type_select<false> {
421 blah x; // expected-error {{unknown type name 'blah'}}
422 };
423};
424}
David Majnemer06ce8a42015-10-20 20:49:21 +0000425
426namespace PR25265 {
427struct S {
428 int fn() throw(); // expected-note {{previous declaration is here}}
429};
430
431int S::fn() { return 0; } // expected-warning {{is missing exception specification}}
432}