zig/doc/langref/test_usingnamespace.zig

9 lines
141 B
Zig
Raw Normal View History

test "using std namespace" {
const S = struct {
usingnamespace @import("std");
};
try S.testing.expect(true);
}
// test