effekt icon indicating copy to clipboard operation
effekt copied to clipboard

Do polymorphism boxing for the result of regions

Open phischu opened this issue 1 year ago • 0 comments

The following program returns an integer through a region:

def main() = {
  val x = region r { 42 };
  println(x)
}

It would be great if we would always box these results, we need it in #642.

phischu avatar Oct 22 '24 14:10 phischu