blob: 85123b54b4d08673c76ab14aa217545c2f636346 [file] [log] [blame]
David Majnemerf6ae8ae2015-08-11 19:25:13 +00001// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -std=c++98 -Wmicrosoft -verify -fms-compatibility -fexceptions -fcxx-exceptions -Wno-error=microsoft-cast
Eli Friedman59e41d02012-02-16 05:20:44 +00002
3
4//MSVC allows forward enum declaration
5enum ENUM; // expected-warning {{forward references to 'enum' types are a Microsoft extension}}
6ENUM *var = 0;
7ENUM var2 = (ENUM)3;
8enum ENUM1* var3 = 0;// expected-warning {{forward references to 'enum' types are a Microsoft extension}}
David Majnemer85bd1202015-06-02 22:15:12 +00009
David Majnemer78324f22015-06-09 02:41:08 +000010typedef void (*FnPtrTy)();
11void (*PR23733_1)() = static_cast<FnPtrTy>((void *)0); // expected-warning {{static_cast between pointer-to-function and pointer-to-object is a Microsoft extension}}
12void (*PR23733_2)() = FnPtrTy((void *)0);
13void (*PR23733_3)() = (FnPtrTy)((void *)0);
14void (*PR23733_4)() = reinterpret_cast<FnPtrTy>((void *)0);
David Majnemer6bf02822015-10-31 08:42:14 +000015
16long function_prototype(int a);
17long (*function_ptr)(int a);
18
19void function_to_voidptr_conv() {
20 void *a1 = function_prototype; // expected-warning {{implicit conversion between pointer-to-function and pointer-to-object is a Microsoft extension}}
21 void *a2 = &function_prototype; // expected-warning {{implicit conversion between pointer-to-function and pointer-to-object is a Microsoft extension}}
22 void *a3 = function_ptr; // expected-warning {{implicit conversion between pointer-to-function and pointer-to-object is a Microsoft extension}}
23}