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

3 lines
116 B
Plaintext

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