2b1d60397d
#KT-10202 In Progress
29 lines
557 B
Plaintext
Vendored
29 lines
557 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class Test {
|
|
fun foo() {
|
|
bar(object : Runnable {
|
|
override fun run() {
|
|
println(this)
|
|
}
|
|
})
|
|
|
|
// Applicable
|
|
bar(Runnable { println(this@Test) })
|
|
|
|
// Applicable
|
|
bar(object : Runnable {
|
|
override fun run() {
|
|
bar(object : Runnable {
|
|
override fun run() {
|
|
println(this)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
private fun bar(b: Runnable) {
|
|
|
|
}
|
|
} |