зеркало из https://github.com/microsoft/clang.git
10 строки
283 B
Mathematica
10 строки
283 B
Mathematica
|
// RUN: clang -fsyntax-only -verify %s
|
||
|
|
||
|
@protocol p1, p4;
|
||
|
@protocol p2 @end
|
||
|
|
||
|
@interface T
|
||
|
- (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}}
|
||
|
- (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}}
|
||
|
@end
|