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

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

@class PVR;

@interface PVRHandldler 
{
          PVR *_imageBrowser;
}
@end

@implementation PVRHandldler @end


@interface PVR   : BASE
@end

@implementation PVR
@end