Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / undefined-protocol-type-1.m
blobf1a08024b251e822d5c6ddac65960e9bb10a1f50
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>*) meth1;  // expected-error {{cannot find protocol declaration for 'p3'}}
9 @end