David Majnemer | 29c69db | 2015-07-26 01:48:59 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility -triple i686-pc-win32 |
Eli Friedman | 59e41d0 | 2012-02-16 05:20:44 +0000 | [diff] [blame] | 2 | |
Aaron Ballman | 478faed | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 3 | enum ENUM1; // expected-warning {{forward references to 'enum' types are a Microsoft extension}} |
Eli Friedman | 59e41d0 | 2012-02-16 05:20:44 +0000 | [diff] [blame] | 4 | enum ENUM1 var1 = 3; |
| 5 | enum ENUM1* var2 = 0; |
| 6 | |
| 7 | |
| 8 | enum ENUM2 { |
| 9 | ENUM2_a = (enum ENUM2) 4, |
| 10 | ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}} |
| 11 | ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}} |
| 12 | }; |
Aaron Ballman | 0c84ebb | 2012-02-23 22:46:33 +0000 | [diff] [blame] | 13 | |
| 14 | __declspec(noreturn) void f6( void ) { |
| 15 | return; // expected-warning {{function 'f6' declared 'noreturn' should not return}} |
| 16 | } |
Aaron Ballman | 478faed | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 17 | |
| 18 | __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */ |
Aaron Ballman | fdd783a | 2014-03-31 18:18:43 +0000 | [diff] [blame] | 19 | struct __declspec(aligned) S2 {}; /* expected-warning {{__declspec attribute 'aligned' is not supported}} */ |
Aaron Ballman | 478faed | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 20 | |
Aaron Ballman | e91c6be | 2012-10-02 14:26:08 +0000 | [diff] [blame] | 21 | struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */ |
Aaron Ballman | c698809 | 2013-12-11 22:27:44 +0000 | [diff] [blame] | 22 | |
Aaron Ballman | fdd783a | 2014-03-31 18:18:43 +0000 | [diff] [blame] | 23 | __declspec(__noreturn__) void f7(void); /* expected-warning {{__declspec attribute '__noreturn__' is not supported}} */ |
David Majnemer | be52539 | 2015-02-18 02:28:13 +0000 | [diff] [blame] | 24 | |
| 25 | size_t x; |