leo/dynamic-check/tests/variables/duplicate_variable.leo

4 lines
114 B
Plaintext

function main() {
let a = 1u8;
let a = 2u8; // Redefining variables with the same name is unsafe in Leo.
}