leo/tests/compiler/mutability/function_input_mut.leo
2021-04-19 18:08:14 -07:00

6 lines
114 B
Plaintext

// Function input are mutable by default.
function main(a: bool) {
a = true;
console.assert(a == true);
}