Files
kotlin-fork/js/js.translator/testData/closure/cases/closureThisInLocalFunction.kt
T
2014-03-11 20:04:02 +04:00

23 lines
371 B
Kotlin

package foo
class Foo {
val o = "O"
val k = "K"
fun test(): String {
fun bar() = o
fun Int.baz() = k + this
val boo = { k }
val cux: Int.()->String = { o + this }
return bar() + 17.baz() + 23.cux() + boo()
}
}
fun box(): String {
val a = Foo().test()
if (a != "OK17O23K") return "$a"
return "OK"
}