brintos

brintos / llvm-project-archived public Read only

0
0
Text · 289 B · f1a0802 Raw
10 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3@protocol p1, p4;4@protocol p2 @end5 6@interface T7- (T<p2, p3, p1, p4>*) meth;  // expected-error {{cannot find protocol declaration for 'p3'}}8- (T<p2, p3, p1, p4>*) meth1;  // expected-error {{cannot find protocol declaration for 'p3'}}9@end10