1*67e74705SXin Li // RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility -triple i686-pc-win32 2*67e74705SXin Li 3*67e74705SXin Li enum ENUM1; // expected-warning {{forward references to 'enum' types are a Microsoft extension}} 4*67e74705SXin Li enum ENUM1 var1 = 3; 5*67e74705SXin Li enum ENUM1* var2 = 0; 6*67e74705SXin Li 7*67e74705SXin Li 8*67e74705SXin Li enum ENUM2 { 9*67e74705SXin Li ENUM2_a = (enum ENUM2) 4, 10*67e74705SXin Li ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}} 11*67e74705SXin Li ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}} 12*67e74705SXin Li }; 13*67e74705SXin Li f6(void)14*67e74705SXin Li__declspec(noreturn) void f6( void ) { 15*67e74705SXin Li return; // expected-warning {{function 'f6' declared 'noreturn' should not return}} 16*67e74705SXin Li } 17*67e74705SXin Li 18*67e74705SXin Li __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */ 19*67e74705SXin Li struct __declspec(aligned) S2 {}; /* expected-warning {{__declspec attribute 'aligned' is not supported}} */ 20*67e74705SXin Li 21*67e74705SXin Li struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */ 22*67e74705SXin Li 23*67e74705SXin Li __declspec(__noreturn__) void f7(void); /* expected-warning {{__declspec attribute '__noreturn__' is not supported}} */ 24*67e74705SXin Li 25*67e74705SXin Li size_t x; 26