blob: db6d30a9c63bcdde15cc566af068c3741029fb32 [file] [log] [blame]
Francois Pichetdde385d2011-03-29 11:38:04 +00001// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wmicrosoft -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
95//MSVC allows forward enum declaration
96enum ENUM; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
Francois Pichet842e7a22010-10-18 15:01:13 +000097ENUM *var = 0;
98ENUM var2 = (ENUM)3;
99enum ENUM1* var3 = 0;// expected-warning {{forward references to 'enum' types are a Microsoft extension}}
100
101
102enum ENUM2 {
103 ENUM2_a = (enum ENUM2) 4,
104 ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
105 ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
106};
Francois Pichet5be38be2011-01-17 01:08:01 +0000107
108
109void f(long long);
110void f(int);
111
112int main()
113{
114 // This is an ambiguous call in standard C++.
115 // This calls f(long long) in Microsoft mode because LL is always signed.
116 f(0xffffffffffffffffLL);
117 f(0xffffffffffffffffi64);
118}
Douglas Gregor86f208c2011-02-22 20:32:04 +0000119
120// Enumeration types with a fixed underlying type.
121const int seventeen = 17;
122typedef int Int;
123
124struct X0 {
125 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
126 enum E1 : seventeen;
127};
128
Douglas Gregor1756ce42011-02-22 21:42:31 +0000129enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
Douglas Gregor86f208c2011-02-22 20:32:04 +0000130 SomeValue = 0x100000000
131};
Francois Pichetb613cd62011-03-29 10:39:17 +0000132
133
134class AAA {
135__declspec(dllimport) void f(void) { }
136void f2(void);
137};
138
139__declspec(dllimport) void AAA::f2(void) { // expected-error {{dllimport attribute can be applied only to symbol}}
140
141}
142
143
144
Francois Pichet8d051e02011-04-10 03:03:52 +0000145template <class T>
146class BB {
147public:
148 void f(int g = 10 ); // expected-note {{previous definition is here}}
149};
150
151template <class T>
152void BB<T>::f(int g = 0) { } // expected-warning {{redefinition of default argument}}
153
Francois Pichet6943e9b2011-04-13 02:38:49 +0000154
155namespace MissingTypename {
156
157template<class T> class A {
158public:
159 typedef int TYPE;
160};
161
162template<class T> class B {
163public:
164 typedef int TYPE;
165};
166
167
168template<class T, class U>
169class C : private A<T>, public B<U> {
170public:
171 typedef A<T> Base1;
172 typedef B<U> Base2;
173 typedef A<U> Base3;
174
175 A<T>::TYPE a1; // expected-warning {{missing 'typename' prior to dependent type name}}
176 Base1::TYPE a2; // expected-warning {{missing 'typename' prior to dependent type name}}
177
178 B<U>::TYPE a3; // expected-warning {{missing 'typename' prior to dependent type name}}
179 Base2::TYPE a4; // expected-warning {{missing 'typename' prior to dependent type name}}
180
181 A<U>::TYPE a5; // expected-error {{missing 'typename' prior to dependent type name}}
182 Base3::TYPE a6; // expected-error {{missing 'typename' prior to dependent type name}}
183 };
184
Francois Pichet2e510a02011-04-22 08:14:00 +0000185}
186
187
188
189
190extern void static_func();
191void static_func(); // expected-note {{previous declaration is here}}
192
193
194static void static_func() // expected-warning {{static declaration of 'static_func' follows non-static declaration}}
195{
196
Francois Picheta8ef3ac2011-05-08 22:52:41 +0000197}
198
199long function_prototype(int a);
200long (*function_ptr)(int a);
201
202void function_to_voidptr_conv() {
203 void *a1 = function_prototype;
204 void *a2 = &function_prototype;
Francois Pichetb594fac2011-05-08 23:15:10 +0000205 void *a3 = function_ptr;
Francois Picheta8ef3ac2011-05-08 22:52:41 +0000206}
Francois Pichet30aff5b2011-05-11 22:13:54 +0000207
208
209void pointer_to_integral_type_conv(char* ptr) {
210 char ch = (char)ptr;
211 short sh = (short)ptr;
212 ch = (char)ptr;
213 sh = (short)ptr;
214}
Francois Pichetb2ee8302011-05-23 03:43:44 +0000215
216namespace ms_using_declaration_bug {
217
218class A {
219public:
220 int f();
221};
222
223class B : public A {
224private:
225 using A::f;
226};
227
228class C : public B {
229private:
230 using B::f; // expected-warning {{using declaration refers to inaccessible member 'ms_using_declaration_bug::B::f', which refers to accessible member 'ms_using_declaration_bug::A::f', accepted for Microsoft compatibility}}
231};
232
Francois Pichetb4746032011-06-01 04:14:20 +0000233}
234
235
236
237namespace friend_as_a_forward_decl {
238
239class A {
240 class Nested {
241 friend class B;
242 B* b;
243 };
244 B* b;
245};
246B* global_b;
247
248
249void f()
250{
251 class Local {
252 friend class Z;
253 Z* b;
254 };
255 Z* b;
256}
257
258 }