leo/compiler/tests/mutability/const_mut.leo
2020-06-29 20:29:53 -07:00

4 lines
103 B
Plaintext

// Adding the `mut` keyword to a constant variable is illegal
function main() {
const mut a = 1u32;
}