blob: e286de7c29b8bbc967268d1ac989c3e0018c94c0 [file] [log] [blame]
#include <objc/objc.h>
struct A {
int i;
float f;
int a:3;
int b:2;
};
@interface MyObject
{
Class isa;
int i;
float f[3];
struct A a, b;
char c;
}
@end
@implementation MyObject
@end
#include "bf-common.h"