leo/tests/compiler/mutability/function_input_mut.leo
2021-05-05 18:29:44 +03:00

13 lines
185 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
// Function input are mutable by default.
function main(a: bool) -> bool {
a = true;
return a == true;
}