mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
9 lines
154 B
Zig
9 lines
154 B
Zig
test "fixed" {
|
|
const a: *void = undefined;
|
|
const b: *[1]void = a;
|
|
_ = b;
|
|
const c: *[0]u8 = undefined;
|
|
const d: []u8 = c;
|
|
_ = d;
|
|
}
|