mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-28 20:06:38 +03: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());
|
|
}
|