mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 06:24:44 +01:00
9 lines
114 B
Zig
9 lines
114 B
Zig
fn foo(s: []const u8) void {
|
|
_ = s;
|
|
}
|
|
|
|
test "string literal to constant slice" {
|
|
foo("hello");
|
|
}
|
|
|
|
// test
|