Francois Pichet | dde385d | 2011-03-29 11:38:04 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wmicrosoft -verify -fms-extensions -fexceptions -fcxx-exceptions |
Douglas Gregor | 5c0ca52 | 2010-08-30 14:44:26 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | // ::type_info is predeclared with forward class declartion |
| 5 | void f(const type_info &a); |
| 6 | |
Francois Pichet | eedd467 | 2011-03-19 23:05:18 +0000 | [diff] [blame] | 7 | |
| 8 | // Microsoft doesn't validate exception specification. |
Francois Pichet | 0f16159 | 2011-05-24 02:11:43 +0000 | [diff] [blame] | 9 | namespace microsoft_exception_spec { |
| 10 | |
Douglas Gregor | 5b6f769 | 2010-08-30 15:04:51 +0000 | [diff] [blame] | 11 | void foo(); // expected-note {{previous declaration}} |
Francois Pichet | eedd467 | 2011-03-19 23:05:18 +0000 | [diff] [blame] | 12 | void foo() throw(); // expected-warning {{exception specification in declaration does not match previous declaration}} |
Douglas Gregor | 5c0ca52 | 2010-08-30 14:44:26 +0000 | [diff] [blame] | 13 | |
Francois Pichet | eedd467 | 2011-03-19 23:05:18 +0000 | [diff] [blame] | 14 | void r6() throw(...); // expected-note {{previous declaration}} |
| 15 | void r6() throw(int); // expected-warning {{exception specification in declaration does not match previous declaration}} |
Douglas Gregor | 5b6f769 | 2010-08-30 15:04:51 +0000 | [diff] [blame] | 16 | |
| 17 | struct Base { |
| 18 | virtual void f2(); |
| 19 | virtual void f3() throw(...); |
| 20 | }; |
| 21 | |
| 22 | struct Derived : Base { |
| 23 | virtual void f2() throw(...); |
| 24 | virtual void f3(); |
| 25 | }; |
Douglas Gregor | afac01d | 2010-09-01 16:29:03 +0000 | [diff] [blame] | 26 | |
Francois Pichet | 0f16159 | 2011-05-24 02:11:43 +0000 | [diff] [blame] | 27 | class A { |
| 28 | virtual ~A() throw(); // expected-note {{overridden virtual function is here}} |
| 29 | }; |
| 30 | |
| 31 | class B : public A { |
| 32 | virtual ~B(); // expected-warning {{exception specification of overriding function is more lax than base version}} |
| 33 | }; |
| 34 | |
| 35 | } |
Francois Pichet | 538e0d0 | 2010-09-08 11:32:25 +0000 | [diff] [blame] | 36 | |
| 37 | // MSVC allows type definition in anonymous union and struct |
| 38 | struct 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 Gregor | afac01d | 2010-09-01 16:29:03 +0000 | [diff] [blame] | 78 | // __stdcall handling |
| 79 | struct M { |
| 80 | int __stdcall addP(); |
| 81 | float __stdcall subtractP(); |
| 82 | }; |
| 83 | |
Francois Pichet | 3bd9aa4 | 2011-08-18 09:59:55 +0000 | [diff] [blame] | 84 | // __unaligned handling |
| 85 | typedef char __unaligned *aligned_type; |
| 86 | |
| 87 | |
Douglas Gregor | afac01d | 2010-09-01 16:29:03 +0000 | [diff] [blame] | 88 | template<typename T> void h1(T (__stdcall M::* const )()) { } |
| 89 | |
| 90 | void m1() { |
| 91 | h1<int>(&M::addP); |
| 92 | h1(&M::subtractP); |
| 93 | } |
Francois Pichet | 8dc3abc | 2010-09-12 05:06:55 +0000 | [diff] [blame] | 94 | |
Francois Pichet | 842e7a2 | 2010-10-18 15:01:13 +0000 | [diff] [blame] | 95 | |
| 96 | |
Francois Pichet | 5be38be | 2011-01-17 01:08:01 +0000 | [diff] [blame] | 97 | |
| 98 | |
| 99 | void f(long long); |
| 100 | void f(int); |
| 101 | |
| 102 | int 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 Gregor | 86f208c | 2011-02-22 20:32:04 +0000 | [diff] [blame] | 109 | |
| 110 | // Enumeration types with a fixed underlying type. |
| 111 | const int seventeen = 17; |
| 112 | typedef int Int; |
| 113 | |
| 114 | struct X0 { |
| 115 | enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} |
| 116 | enum E1 : seventeen; |
| 117 | }; |
| 118 | |
Douglas Gregor | 1756ce4 | 2011-02-22 21:42:31 +0000 | [diff] [blame] | 119 | enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}} |
Douglas Gregor | 86f208c | 2011-02-22 20:32:04 +0000 | [diff] [blame] | 120 | SomeValue = 0x100000000 |
| 121 | }; |
Francois Pichet | b613cd6 | 2011-03-29 10:39:17 +0000 | [diff] [blame] | 122 | |
| 123 | |
| 124 | class AAA { |
| 125 | __declspec(dllimport) void f(void) { } |
| 126 | void 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 Pichet | 8d051e0 | 2011-04-10 03:03:52 +0000 | [diff] [blame] | 135 | template <class T> |
| 136 | class BB { |
| 137 | public: |
| 138 | void f(int g = 10 ); // expected-note {{previous definition is here}} |
| 139 | }; |
| 140 | |
| 141 | template <class T> |
| 142 | void BB<T>::f(int g = 0) { } // expected-warning {{redefinition of default argument}} |
| 143 | |
Francois Pichet | 6943e9b | 2011-04-13 02:38:49 +0000 | [diff] [blame] | 144 | |
Francois Pichet | 2e510a0 | 2011-04-22 08:14:00 +0000 | [diff] [blame] | 145 | |
| 146 | extern void static_func(); |
| 147 | void static_func(); // expected-note {{previous declaration is here}} |
| 148 | |
| 149 | |
| 150 | static void static_func() // expected-warning {{static declaration of 'static_func' follows non-static declaration}} |
| 151 | { |
| 152 | |
Francois Pichet | a8ef3ac | 2011-05-08 22:52:41 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | long function_prototype(int a); |
| 156 | long (*function_ptr)(int a); |
| 157 | |
| 158 | void function_to_voidptr_conv() { |
| 159 | void *a1 = function_prototype; |
| 160 | void *a2 = &function_prototype; |
Francois Pichet | b594fac | 2011-05-08 23:15:10 +0000 | [diff] [blame] | 161 | void *a3 = function_ptr; |
Francois Pichet | a8ef3ac | 2011-05-08 22:52:41 +0000 | [diff] [blame] | 162 | } |
Francois Pichet | 30aff5b | 2011-05-11 22:13:54 +0000 | [diff] [blame] | 163 | |
| 164 | |
| 165 | void 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 Pichet | b2ee830 | 2011-05-23 03:43:44 +0000 | [diff] [blame] | 171 | |
Francois Pichet | b474603 | 2011-06-01 04:14:20 +0000 | [diff] [blame] | 172 | |
| 173 | namespace friend_as_a_forward_decl { |
| 174 | |
| 175 | class A { |
| 176 | class Nested { |
| 177 | friend class B; |
| 178 | B* b; |
| 179 | }; |
| 180 | B* b; |
| 181 | }; |
| 182 | B* global_b; |
| 183 | |
| 184 | |
| 185 | void f() |
| 186 | { |
| 187 | class Local { |
| 188 | friend class Z; |
| 189 | Z* b; |
| 190 | }; |
| 191 | Z* b; |
| 192 | } |
| 193 | |
Francois Pichet | c985b88 | 2011-09-13 10:26:51 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Douglas Gregor | a2b4e5d | 2011-10-17 17:09:53 +0000 | [diff] [blame] | 196 | struct PR11150 { |
| 197 | class X { |
| 198 | virtual void f() = 0; |
| 199 | }; |
| 200 | |
| 201 | int array[__is_abstract(X)? 1 : -1]; |
| 202 | }; |
Douglas Gregor | b57791e | 2011-10-21 03:57:52 +0000 | [diff] [blame] | 203 | |
| 204 | void f() { int __except = 0; } |
| 205 | |