mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00: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
|