# Golden test output of SBEVariableTest/LocalVariableMove
-- INPUT EXPRESSION:

    let [
        l10.0 = "abcdeghijklmnop" 
    ] 
    in newArray(move(l10.0), move(l10.0)) 


-- COMPILED EXPRESSION:
[0x0000-0x0019] stackSize: 1, maxStackSize: 4
0x0000: pushConstVal(value: "abcdeghijklmnop");
0x000a: pushMoveLocalVal(arg: 0);
0x000f: pushMoveLocalVal(arg: 1);
0x0014: functionSmall(f: newArray, arity: 2);
0x0017: swap();
0x0018: pop();


-- EXECUTE VARIATION:
RESULT: ["abcdeghijklmnop"]

