From 406edf006681e430049abdd3e68f4e1306a9297d Mon Sep 17 00:00:00 2001 From: Sean T Allen Date: Thu, 23 Jan 2025 22:10:33 -0500 Subject: [PATCH] Update .release-notes/4595.md --- .release-notes/4595.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-notes/4595.md b/.release-notes/4595.md index c8b6fdf6dd..3741e30c62 100644 --- a/.release-notes/4595.md +++ b/.release-notes/4595.md @@ -4,7 +4,7 @@ When matching on a tuple element within a union type, the compiler would crash w The following code fails to compile because of `(123, (let x: I32))` in the `match`. The extra parentheses should be ignored and treated like `(123, let x: I32)`. -```ponyc +```pony let value: (I32 | (I32, I32)) = (123, 42) match value