diff options
Diffstat (limited to 'clang/test/Sema/MicrosoftExtensions.c')
-rw-r--r-- | clang/test/Sema/MicrosoftExtensions.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/test/Sema/MicrosoftExtensions.c b/clang/test/Sema/MicrosoftExtensions.c index 7c2782f6583..52cb88277c6 100644 --- a/clang/test/Sema/MicrosoftExtensions.c +++ b/clang/test/Sema/MicrosoftExtensions.c @@ -93,8 +93,6 @@ struct __declspec(deprecated) DS1 { int i; float f; }; #define MY_TEXT "This is also deprecated" __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' declared here}} -struct __declspec(deprecated(123)) DS2 {}; // expected-error {{argument to deprecated attribute was not a string literal}} - void test( void ) { e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}} struct DS1 s = { 0 }; // expected-warning {{'DS1' is deprecated}} |