ghostty/pkg/objc/main.zig
Mitchell Hashimoto 7d48e564b5 pkg/objc: message send
2022-10-25 20:30:42 -07:00

11 lines
248 B
Zig

pub const c = @import("c.zig");
pub usingnamespace @import("class.zig");
pub usingnamespace @import("sel.zig");
test {
@import("std").testing.refAllDecls(@This());
// TODO: remove once we integrate this
_ = @import("msg_send.zig");
}