[NFC][RISCV] Remove CFIIndex argument from allocateStack (#117871)
[llvm-project.git] / clang / test / SemaObjC / protocol-expr-neg-1.m
blob9786aab6ebc0f28948771d16f2b3884cb1511a1b
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @class Protocol;
5 @protocol fproto; // expected-note {{'fproto' declared here}}
7 @protocol p1 
8 @end
10 @class cl;
12 int main(void)
14         Protocol *proto = @protocol(p1);
15         Protocol *fproto = @protocol(fproto); // expected-error {{@protocol is using a forward protocol declaration of 'fproto'}}
16         Protocol *pp = @protocol(i); // expected-error {{cannot find protocol declaration for 'i'}}
17         Protocol *p1p = @protocol(cl); // expected-error {{cannot find protocol declaration for 'cl'}}
20 @protocol SuperProtocol; // expected-note {{'SuperProtocol' declared here}}
21 @protocol TestProtocol; // expected-note {{'TestProtocol' declared here}}
23 @interface I
24 - (int) conformsToProtocol : (Protocol *)protocl;
25 @end
27 int doesConform(id foo) {
28   return [foo conformsToProtocol:@protocol(TestProtocol)]; // expected-error {{@protocol is using a forward protocol declaration of 'TestProtocol'}}
31 int doesConformSuper(id foo) {
32   return [foo conformsToProtocol:@protocol(SuperProtocol)]; // expected-error {{@protocol is using a forward protocol declaration of 'SuperProtocol'}}