mirror of
https://github.com/ziglang/zig.git
synced 2025-12-29 01:23:17 +00:00
9 lines
119 B
Zig
9 lines
119 B
Zig
fn foo(a: []u8) void {
|
|
_ = a;
|
|
}
|
|
|
|
test "address of 0 length array" {
|
|
var pt: [0]u8 = undefined;
|
|
foo(&pt);
|
|
}
|