fun b(body: () -> Int) = body() class A { fun test(): Int { val i = 24 return b { i } } }