leo/compiler/otests/global_consts/modify_global_const.leo
2021-05-05 11:56:00 +03:00

6 lines
85 B
Plaintext

const basic: u32 = 8;
function main() {
// Cannot re-assign!
basic = 2u32;
}