diff options
Diffstat (limited to 'test/SemaObjC/dllexport.m')
-rw-r--r-- | test/SemaObjC/dllexport.m | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/SemaObjC/dllexport.m b/test/SemaObjC/dllexport.m index e90b982c15c0..11cd1fbe14e6 100644 --- a/test/SemaObjC/dllexport.m +++ b/test/SemaObjC/dllexport.m @@ -1,17 +1,17 @@ // RUN: %clang_cc1 -triple i686-windows -fdeclspec -fsyntax-only -verify %s __declspec(dllexport) typedef int typedef1; -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, classes, and Objective-C interfaces}} typedef __declspec(dllexport) int typedef2; -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to}} typedef int __declspec(dllexport) typedef3; -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to}} typedef __declspec(dllexport) void (*FunTy)(); -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to}} enum __declspec(dllexport) E { Val }; -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to}} struct __declspec(dllexport) Record {}; -// expected-warning@-1{{'dllexport' attribute only applies to functions, variables, and Objective-C interfaces}} +// expected-warning@-1{{'dllexport' attribute only applies to}} __declspec(dllexport) __attribute__((__objc_root_class__)) |