13 lines
201 B
Plaintext
Vendored
13 lines
201 B
Plaintext
Vendored
class Test { // TARGET_BLOCK:
|
|
fun method() = 1
|
|
|
|
fun foo() {
|
|
Runnable1()
|
|
}
|
|
|
|
inner class Runnable1 : Runnable {
|
|
override fun run() {
|
|
method()
|
|
}
|
|
}
|
|
} |