ref: 10639872d6c832f4215fca9f5d33a90b59d8021f dir: /test/closure.myr/
use std const main = { var a, b, c, fn a = 111 b = 555 c = 333 fn = { var x x = 666 std.put("{}{}{}{}\n", a, b, c, x) } fn() }