11 lines
192 B
Kotlin
Vendored
11 lines
192 B
Kotlin
Vendored
class Test { // TARGET_BLOCK:
|
|
fun method() = 1
|
|
|
|
fun foo() {
|
|
<caret>object : Runnable {
|
|
override fun run() {
|
|
method()
|
|
}
|
|
}
|
|
}
|
|
} |