aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/proto-lossage-5.mm
blob: c257411561f2a68d8f32cf04dba36dc588263f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* APPLE LOCAL file mainline */
/* Do not lose references to forward-declared protocols.  */
/* { dg-do compile } */
@class MyBaseClass;
@class MyClassThatFails;
@protocol _MyProtocol;

@interface MyClassThatFails
- (MyBaseClass<_MyProtocol> *) aMethod;
@end

@interface MyBaseClass
@end

@protocol _MyProtocol
@end

@implementation MyClassThatFails
- (MyBaseClass<_MyProtocol> *) aMethod
{
    return 0;
}
@end