8sa1-gcc/gcc/testsuite/objc/execute/bf-17.m
Ovidiu Predescu d636ae0b80 {objc.exp,objc-torture.exp}: New files for objc testing harness.
* lib/{objc.exp,objc-torture.exp}: New files for objc testing harness.
        * objc: ObjC testsuite.

From-SVN: r22198
1998-09-02 17:43:53 -06:00

26 lines
268 B
Objective-C

#include <objc/objc.h>
#include <objc/objc-api.h>
#include <objc/Object.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;
}
@end
@implementation MyObject
@end
#include "bf-common.h"