Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / objc / execute / bf-16.m
blobe286de7c29b8bbc967268d1ac989c3e0018c94c0
1 #include <objc/objc.h>
3 struct A {
4   int i;
5   float f;
6   int a:3;
7   int b:2;
8 };
10 @interface MyObject
12   Class isa;
13   int i;
14   float f[3];
15   struct A a, b;
16   char c;
18 @end
20 @implementation MyObject
21 @end
23 #include "bf-common.h"