New Issue: [Bug]: Capturing arrays in a ref tuple results in a compiler assertion

28457, "e-kayrakli", "[Bug]: Capturing arrays in a ref tuple results in a compiler assertion", "2026-02-25T19:06:39Z"

Summary of Problem

Description:
I wanted to be able to capture arrays in a tuple without copying them.

Is this issue currently blocking your progress?
Given the binary choice, "No". But I will probably write some code that comes pretty close to this issue.

Steps to Reproduce

Source Code:

var Arr = [1, 2, 3];
var Brr = [1, 2, 3];

ref Trr = (Arr, Brr);  // assertion on this line
Trr[0][0] = 0;

writeln(Trr);
writeln(Arr);