aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/2346.zig
blob: 52c1e3ac6b5a10dd530519103125f011afd8ee90 (plain)
1
2
3
4
5
6
7
8
test "fixed" {
    const a: *void = undefined;
    const b: *[1]void = a;
    _ = b;
    const c: *[0]u8 = undefined;
    const d: []u8 = c;
    _ = d;
}