From 25012ab3d12ac7bcd4e53a90367afc8e97d91c36 Mon Sep 17 00:00:00 2001 From: Robin Voetter Date: Tue, 26 Oct 2021 17:33:35 +0200 Subject: astgen: generate correct switch prong indices Switch prong values are fetched by index in semantic analysis by prong offset, but these were computed as capture offset. This means that a switch where the first prong does not capture and the second does, the switch_capture zir instruction would be assigned switch_prong 0 instead of 1. --- test/behavior/switch.zig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test') diff --git a/test/behavior/switch.zig b/test/behavior/switch.zig index 6df3656760..3ec49a060a 100644 --- a/test/behavior/switch.zig +++ b/test/behavior/switch.zig @@ -299,3 +299,17 @@ fn testSwitchHandleAllCasesRange(x: u8) u8 { 204...255 => 3, }; } + +test "switch on union with some prongs capturing" { + const X = union(enum) { + a, + b: i32, + }; + + var x: X = X{ .b = 10 }; + var y: i32 = switch (x) { + .a => unreachable, + .b => |b| b + 1, + }; + try expect(y == 11); +} -- cgit v1.2.3