mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
10 lines
155 B
Zig
10 lines
155 B
Zig
const std = @import("../../std.zig");
|
|
|
|
const testing = std.testing;
|
|
|
|
pub const Socket = @import("Socket.zig");
|
|
|
|
test {
|
|
testing.refAllDecls(@This());
|
|
}
|