[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / undefined-protocol-type-1.m
blob3be4425cdcec089635fae40f08fab3b164bfee8b
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @protocol p1, p4;
4 @protocol p2 @end
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