1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-05 08:50:21 +03:00
leo/compiler/tests/mutability/function_input.leo
2021-03-19 11:30:24 -04:00

4 lines
86 B
Plaintext

// Const function input are immutable.
function main(const a: bool) {
a = false;
}