aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/instantiate-method-return.mm
blob: b8ba4af09222322a566d94e3edf83ebd9cdb12cd (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 %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