blob: b256861b9f397b3c577e4281d6cc1b1bc15e9c21 [file] [log] [blame]
Aaron Ballman52d0aaa2017-02-14 22:47:20 +00001// RUN: %clang_cc1 -triple i386-pc-unknown -fsyntax-only -verify %s
2
3__declspec(naked) void f(void) {} // expected-error{{'__declspec' attributes are not enabled; use '-fdeclspec' or '-fms-extensions' to enable support for __declspec attributes}}
4
5struct S {
6 __declspec(property(get=Getter, put=Setter)) int X; // expected-error{{'__declspec' attributes are not enabled; use '-fdeclspec' or '-fms-extensions' to enable support for __declspec attributes}}
7 int Y;
8};