blob: 010033bba00c622d99d6780a14f60759bcb90fe3 [file] [log] [blame]
Eli Friedmana2d7dfa2012-02-16 05:20:44 +00001// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility
2
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003enum ENUM1; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
Eli Friedmana2d7dfa2012-02-16 05:20:44 +00004enum ENUM1 var1 = 3;
5enum ENUM1* var2 = 0;
6
7
8enum 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 Ballman94287722012-02-23 22:46:33 +000013
14__declspec(noreturn) void f6( void ) {
15 return; // expected-warning {{function 'f6' declared 'noreturn' should not return}}
16}
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000017
18__declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */
Stephen Hines651f13c2014-04-23 16:59:28 -070019struct __declspec(aligned) S2 {}; /* expected-warning {{__declspec attribute 'aligned' is not supported}} */
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000020
Aaron Ballman82bfa192012-10-02 14:26:08 +000021struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */
Stephen Hines651f13c2014-04-23 16:59:28 -070022
23__declspec(__noreturn__) void f7(void); /* expected-warning {{__declspec attribute '__noreturn__' is not supported}} */
Stephen Hines0e2c34f2015-03-23 12:09:02 -070024
25size_t x;