blob: b3976d6458444bc8687303da1d834e68e68ae60f [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -triple x86_64-unknown-unknown -emit-llvm -o %t %s
Fariborz Jahanianebf9ed32009-03-20 20:48:19 +00002
3@interface BASE {
4@private
5 void* _reserved;
6}
7@end
8
9@class PVR;
10
11@interface PVRHandldler
12{
13 PVR *_imageBrowser;
14}
15@end
16
17@implementation PVRHandldler @end
18
19
20@interface PVR : BASE
21@end
22
23@implementation PVR
24@end