mirror of
https://github.com/ziglang/zig.git
synced 2025-12-26 16:13:07 +00:00
Some tests are now failing due to debug info changes, some tests now pass due to improved compiler functionality.
11 lines
191 B
Zig
11 lines
191 B
Zig
const builtin = @import("builtin");
|
|
|
|
test "fixed" {
|
|
const a: *void = undefined;
|
|
const b: *[1]void = a;
|
|
_ = b;
|
|
const c: *[0]u8 = undefined;
|
|
const d: []u8 = c;
|
|
_ = d;
|
|
}
|