Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / dllexport.mm
blob739749f6419275b6739c6297d5923eee25bc5dec
1 // RUN: %clang_cc1 -triple i686-windows -fdeclspec -fsyntax-only -verify %s
3 __declspec(dllexport) typedef int typedef1;
4 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
5 typedef __declspec(dllexport) int typedef2;
6 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
7 typedef int __declspec(dllexport) typedef3;
8 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
9 typedef __declspec(dllexport) void (*FunTy)();
10 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
11 enum __declspec(dllexport) E { };
12 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
13 #if __has_feature(cxx_strong_enums)
14 enum class __declspec(dllexport) F { };
15 // expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}}
16 #endif
18 __declspec(dllexport)
19 __attribute__((__objc_root_class__))
20 @interface NSObject
21 @end
23 __declspec(dllexport)
24 @interface I : NSObject
25 - (void)method;
26 @end
28 @implementation I
29 - (void)method {
31 @end