mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
8 lines
141 B
Zig
8 lines
141 B
Zig
test "using std namespace" {
|
|
const S = struct {
|
|
usingnamespace @import("std");
|
|
};
|
|
try S.testing.expect(true);
|
|
}
|
|
|
|
// test
|