blob: 2a3ae323128052c0a051d06371f14b17d437d497 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
// PR7386
@class NSObject;
class A;
template<class T> class V {};
@protocol Protocol
- (V<A*>)protocolMethod;
@end
@interface I<Protocol>
@end
@implementation I
- (void)randomMethod:(id)info {
V<A*> vec([self protocolMethod]);
}
- (V<A*>)protocolMethod {
V<A*> va; return va;
}
@end