blob: 2a3ae323128052c0a051d06371f14b17d437d497 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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
|