mirror of
https://github.com/ziglang/zig.git
synced 2026-01-03 03:53:20 +00:00
8 lines
149 B
C
8 lines
149 B
C
#include <assert.h>
|
|
#include <objc/runtime.h>
|
|
|
|
int main() {
|
|
assert(objc_getClass("NSObject") > 0);
|
|
assert(objc_getClass("NSApplication") > 0);
|
|
}
|