mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2025-03-01 10:48:37 +00:00
18 lines
282 B
Objective-C
18 lines
282 B
Objective-C
// TEST_CONFIG
|
|
|
|
#include "test.h"
|
|
#include <objc/objc-runtime.h>
|
|
#include <objc/objc-gdb.h>
|
|
#import <Foundation/NSObject.h>
|
|
|
|
@interface Foo:NSObject
|
|
@end
|
|
@implementation Foo
|
|
@end
|
|
|
|
int main()
|
|
{
|
|
testassert(gdb_class_getClass([Foo class]) == [Foo class]);
|
|
succeed(__FILE__);
|
|
}
|