hanchenye-llvm-project/clang/test/Parser/declspec-supported.c

11 lines
303 B
C

// RUN: %clang_cc1 -triple i386-pc-unknown -fsyntax-only -fms-extensions -verify %s
// RUN: %clang_cc1 -triple i386-pc-unknown -fsyntax-only -fdeclspec -verify %s
// expected-no-diagnostics
__declspec(naked) void f(void) {}
struct S {
__declspec(property(get=Getter, put=Setter)) int X;
int Y;
};