ref: cec7bf1244ec1c3f4fbd8c6edb8cddd72d82ed92 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() }