10 lines
118 B
Kotlin
Vendored
10 lines
118 B
Kotlin
Vendored
interface Runnable {
|
|
fun run()
|
|
}
|
|
|
|
class C {
|
|
fun f() {
|
|
class MyRunnable(): Runnable {
|
|
}
|
|
}
|
|
} |