blob: 0e6237e012523ca05f017fbdb8d10d87dd5b9022 [file] [log] [blame]
Daniel Dunbar9ad54e32008-10-04 23:47:28 +00001//-*- ObjC -*-
2
3@protocol P0;
4
5@protocol P1
6-(void) fm0;
7@end
8
9@class B;
10
11@interface Root
12@end
13
14@interface A : Root <P1> {
15 int iv0;
16 B *iv1;
17}
18
19@property(assign,readonly) int p0;
20@property(assign,nonatomic,readwrite) int p1;
21@property(copy) id p2;
22@property(retain) id p3;
23@property(assign, getter=getme, setter=setme:) id p4;
24@end
25
26@implementation A
27@dynamic p0;
28@synthesize p1 = iv0;
29+(void) fm0 {
30 [super fm0];
31}
32-(void) im0 {
Daniel Dunbar4a9c5f32008-10-24 08:39:46 +000033 const char *s0 = __func__;
34 const char *s1 = __FUNCTION__;
35 const char *s2 = __PRETTY_FUNCTION__;
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000036 [super im0];
Daniel Dunbar4a9c5f32008-10-24 08:39:46 +000037#ifndef IRGENABLE
Daniel Dunbarfe2c0132008-10-17 23:04:32 +000038 int x = super.p0;
Daniel Dunbar4a9c5f32008-10-24 08:39:46 +000039#endif
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000040}
41-(void) im1: (int) x, ... {
42}
43@end
44
45@implementation C : A
46@end
47
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000048@interface A (Cat)
49@end
50
51@implementation A (Cat)
52@end
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000053
54int f0(id x) {
Daniel Dunbar4a9c5f32008-10-24 08:39:46 +000055#ifndef IRGENABLE
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000056 @synchronized(x) {
57 }
Daniel Dunbar4a9c5f32008-10-24 08:39:46 +000058#endif
Daniel Dunbar9ad54e32008-10-04 23:47:28 +000059
60 @try {
61 @throw x;
62 } @catch(A *e) {
63 @throw;
64 } @finally {
65 ;
66 }
67
68 for (id y in x) {
69 break;
70 }
71}
72
73struct s0 {
74 @defs(A);
75};