2012-02-16 13:20:44 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility
|
|
|
|
|
2012-06-20 05:48:43 +08:00
|
|
|
enum ENUM1; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
|
2012-02-16 13:20:44 +08:00
|
|
|
enum ENUM1 var1 = 3;
|
|
|
|
enum ENUM1* var2 = 0;
|
|
|
|
|
|
|
|
|
|
|
|
enum ENUM2 {
|
|
|
|
ENUM2_a = (enum ENUM2) 4,
|
|
|
|
ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
|
|
|
|
ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
|
|
|
|
};
|
2012-02-24 06:46:33 +08:00
|
|
|
|
|
|
|
__declspec(noreturn) void f6( void ) {
|
|
|
|
return; // expected-warning {{function 'f6' declared 'noreturn' should not return}}
|
|
|
|
}
|