leo/compiler/tests/mutability/const_mut.leo
2020-07-17 12:59:18 -07:00

4 lines
105 B
Plaintext

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