suicmez/test_binding.sui

5 lines
No EOL
79 B
Text

fn test_binding_id() -> int do
let x = 5
let x = x + 1 # shadowing
x
end