OSDN Git Service

New tests
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / execute / bf-16.m
1 #include <objc/objc.h>
2 #include <objc/objc-api.h>
3 #include <objc/Object.h>
4
5 struct A {
6   int i;
7   float f;
8   int a:3;
9   int b:2;
10 };
11
12 @interface MyObject
13 {
14   Class isa;
15   int i;
16   float f[3];
17   struct A a, b;
18   char c;
19 }
20 @end
21
22 @implementation MyObject
23 @end
24
25 #include "bf-common.h"
26