8sa1-gcc/gcc/testsuite/objc/execute/bf-7.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

23 lines
256 B
Objective-C

#include <objc/objc.h>
#include <objc/objc-api.h>
#include <objc/Object.h>
@interface MyObject
{
Class isa;
float f;
char a;
int i:2;
int j:6;
int k:12;
char c;
void *pointer;
}
@end
@implementation MyObject
@end
#include "bf-common.h"