blob: 3094963c682523824c5c21f03064b74bf9497904 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* Contributed by Nicola Pero - Wed Dec 5 17:12:40 GMT 2001 */
#include <stdlib.h>
#import "../../objc-obj-c++-shared/Object1.h"
#include <objc/objc.h>
typedef enum { black, white } color;
typedef struct
{
color a:2;
color b:2;
} color_couple;
@interface TestClass: Object
{
color_couple *c;
}
- (color_couple *)colorCouple;
- (void)setColorCouple: (color_couple *)a;
@end
@implementation TestClass
- (color_couple *)colorCouple
{
return c;
}
- (void)setColorCouple: (color_couple *)a
{
c = a;
}
@end
int main (void)
{
color_couple cc;
TestClass *c;
c = [TestClass new];
cc.a = black;
cc.b = white;
[c setColorCouple: &cc];
if ([c colorCouple] != &cc)
{
abort ();
}
return 0;
}
#include "../../objc-obj-c++-shared/Object1-implementation.h"
|