leo/asg/tests/fail/mutability/const.leo

5 lines
98 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
// Constant variables are immutable by default.
function main() {
const a = 1u32;
a = 0;
}