leo/compiler/tests/mutability/function_input.leo

4 lines
86 B
Plaintext
Raw Normal View History

2021-03-19 18:30:24 +03:00
// Const function input are immutable.
function main(const a: bool) {
2020-07-31 02:37:01 +03:00
a = false;
}