9 lines
174 B
Kotlin
Vendored
9 lines
174 B
Kotlin
Vendored
class Test {
|
|
fun someMethod() {
|
|
val someRunnable = object : Runnable {
|
|
override fun run() {
|
|
this.run()
|
|
}
|
|
}
|
|
}
|
|
} |