Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / objc / execute / bf-17.m
blob7650ffae71aa8f130379fd7d13967fe7ac71065a
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;
17 @end
19 @implementation MyObject
20 @end
22 #include "bf-common.h"