You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
303 B
11 lines
303 B
4 months ago
|
// 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;
|
||
|
};
|