Fix multiAssignment

This commit is contained in:
Andrew Morris
2023-03-01 18:02:07 +11:00
parent 71eaacf2d5
commit 8fdd4ca9ee
3 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
// test_output! [1,1]
export default function main() {
let a;
let b;
a = b = 1;
return [a, b];
}