[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / SemaObjC / protocol-archane.m
blobffb04fff6d04de26ff396d64a41e6ee6d6e1f525
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-pointer-to-int-cast -Wno-objc-root-class -Wno-strict-prototypes %s
3 @protocol SomeProtocol
4 - (void) bar;
5 @end
7 void bar();
8 void foo(id x) {
9   bar((short<SomeProtocol>)x); // expected-error {{expected ')'}} expected-note {{to match this '('}}
10   bar((<SomeProtocol>)x);      // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
12   [(<SomeProtocol>)x bar];      // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
15 @protocol MyProtocol
16 - (void)doSomething;
17 @end
19 @interface MyClass
20 - (void)m1:(id <MyProtocol> const)arg1;
22 // FIXME: provide a better diagnostic (no typedef).
23 - (void)m2:(id <MyProtocol> short)arg1; // expected-error {{'short type-name' is invalid}}
24 @end
26 typedef int NotAnObjCObjectType;
28 // GCC doesn't diagnose this.
29 NotAnObjCObjectType <SomeProtocol> *obj; // expected-error {{invalid protocol qualifiers on non-ObjC type}}
31 typedef struct objc_class *Class;
33 Class <SomeProtocol> UnfortunateGCCExtension;
35 @protocol Broken @end
36 @interface Crash @end
37 @implementation Crash
38 - (void)crashWith:(<Broken>)a { // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
40 @end
42 typedef <SomeProtocol> id TwoTypeSpecs; // expected-warning{{no object type specified}}
43 // expected-error@-1{{typedef redefinition with different types ('id<SomeProtocol>' vs 'id')}}
44 // expected-error@-2{{expected ';' after top level declarator}}