repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
undefined-protocol-type-1.m
blob
3be4425cdcec089635fae40f08fab3b164bfee8b
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@protocol p1, p4;
4
@protocol p2 @end
5
6
@interface T
7
- (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}}
8
- (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}}
9
@end