== t1 == fun t1() { for (i in 1..2) { doSmth(i) } } --------------------- 1 NEW() .. NEW(, ) 2 NEW() 1..2 COPY doSmth NEW() i NEW() doSmth(i) COPY { doSmth(i) } COPY ===================== == doSmth == fun doSmth(i: Int) {} --------------------- =====================