[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Parser / objc-quirks.m
blob0bdeb464e77160733d5631736e62b8259863a038
1 // RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
3 // FIXME: This is a horrible error message here. Fix.
4 int @"s" = 5;  // expected-error {{prefix attribute must be}}
7 // rdar://6480479
8 @interface A // expected-note {{class started here}}
9 }; // expected-error {{missing '@end'}} \
10 // expected-error {{extraneous closing brace ('}')}} \
11 // expected-warning{{extra ';' outside of a function}}
16 // PR6811
17 // 'super' isn't an expression, it is a magic context-sensitive keyword.
18 @interface A2 {
19   id isa;
21 - (void)a;
22 @end
24 @interface B2 : A2 @end
25 @implementation B2
26 - (void)a
28   [(super) a];  // expected-error {{use of undeclared identifier 'super'}}
30 @end
32 @compatibility_alias A3 A2;