aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/class-type.m
blob: 12a8a31b9d61a0c8b2e0625e9b9fafb261259d80 (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 -triple x86_64-unknown-unknown -emit-llvm -o %t %s

@interface I0 {
  struct { int a; } a;
}
@end 

@class I2;

@interface I1 {
  I2 *_imageBrowser;
}
@end 

@implementation I1 
@end 

@interface I2 : I0 
@end 

@implementation I2 
@end