aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/forward-class-impl-metadata.m
blob: 3f8a5a4bc20ae334aa01e86c719aa0c8d0e3f8db (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
// RUN: clang-cc -triple x86_64-unknown-unknown -emit-llvm -o %t %s
// XFAIL: *

@interface BASE  {
@private
    void* _reserved;
}
@end

@class PVR;

@interface PVRHandldler 
{
          PVR *_imageBrowser;
}
@end

@implementation PVRHandldler @end


@interface PVR   : BASE
@end

@implementation PVR
@end