d636ae0b80
* lib/{objc.exp,objc-torture.exp}: New files for objc testing harness. * objc: ObjC testsuite. From-SVN: r22198
25 lines
284 B
Objective-C
25 lines
284 B
Objective-C
#include <objc/objc.h>
|
|
#include <objc/objc-api.h>
|
|
#include <objc/Object.h>
|
|
|
|
@interface MyObject
|
|
{
|
|
Class isa;
|
|
float f;
|
|
char a;
|
|
struct {
|
|
int i:2;
|
|
int j:6;
|
|
int k:12;
|
|
} flags;
|
|
char c;
|
|
void *pointer;
|
|
}
|
|
@end
|
|
|
|
@implementation MyObject
|
|
@end
|
|
|
|
#include "bf-common.h"
|
|
|