Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / instantiate-method-return.mm
blob74faa7f58257c7b739bff69a1dee775ad9fc2615
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // PR7386
4 @class NSObject;
6 class A; // expected-note {{forward declaration of 'A'}}
7 template<class T> class V { T x; }; // expected-error {{field has incomplete type 'A'}}
9 @protocol Protocol
10 - (V<A*>)protocolMethod;
11 - (V<A>)method2;
12 @end
15 @interface I<Protocol>
16 @end
19 @implementation I
20 - (void)randomMethod:(id)info {
21   V<A*> vec([self protocolMethod]);
24 - (V<A*>)protocolMethod {
25   V<A*> va; return va;
27 - (V<A>)method2 { // expected-note {{in instantiation of}}
29 @end