class A { val value : Int = 0 } fun foo(body: A.() -> Unit) {} fun bar() { foo { val i = value print(i) print(i) } foo { print(value) print(value) } }