leo/tests/compiler/mutability/function_input.leo

11 lines
158 B
Plaintext
Raw Normal View History

2021-05-03 17:28:53 +03:00
/*
namespace: Compile
expectation: Fail
2021-05-05 18:29:44 +03:00
input_file: input/dummy.in
2021-05-03 17:28:53 +03:00
*/
2021-03-19 18:30:24 +03:00
// Const function input are immutable.
2021-05-05 18:29:44 +03:00
function main(const b: bool) {
2020-07-31 02:37:01 +03:00
a = false;
2021-05-05 18:29:44 +03:00
}