leo/asg/tests/fail/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) {
2021-01-25 18:17:42 +03:00
a = false;
}