mirror of
https://github.com/ziglang/zig.git
synced 2025-12-31 18:43:18 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
7 lines
132 B
Zig
7 lines
132 B
Zig
test "fixed" {
|
|
const a: *void = undefined;
|
|
const b: *[1]void = a;
|
|
const c: *[0]u8 = undefined;
|
|
const d: []u8 = c;
|
|
}
|