mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
9 lines
422 B
C++
9 lines
422 B
C++
// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -std=c++98 -Wmicrosoft -verify -fms-compatibility -fexceptions -fcxx-exceptions
|
|
|
|
|
|
//MSVC allows forward enum declaration
|
|
enum ENUM; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
|
|
ENUM *var = 0;
|
|
ENUM var2 = (ENUM)3;
|
|
enum ENUM1* var3 = 0;// expected-warning {{forward references to 'enum' types are a Microsoft extension}}
|