summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/class-type.m
blob: 4eae1ae6eab61f846e965977ae6e590dd3ca607c (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
26
27
28
29
30
31
32
33
34
35
36
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %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 


// Implementations without interface declarations.
// rdar://6804402
@class foo;
@implementation foo 
@end

@implementation bar
@end