OSDN Git Service

* objc/objc-act.c (objc_add_static_instance): Set DECL_INITIAL
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / execute / bf-1.m
1 #include <objc/objc.h>
2 #include <objc/objc-api.h>
3 #include <objc/Object.h>
4
5 @interface MyObject
6 {
7   Class isa;
8   float f;
9   char a;
10   struct {
11     int i:2;
12     int j:3;
13     int k:12;
14   } flags;
15   char c;
16 //  void *pointer;
17 }
18 @end
19
20 @implementation MyObject
21 @end
22
23 #include "bf-common.h"
24