blob: 185576a21bab323405a9fca435ea243ae5c8cbf2 [file] [log] [blame]
main() {
var a;
for (var i=0; i<10; i++) {
a = () => i;
}
print(a());
}