mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
148 B
Kotlin
10 lines
148 B
Kotlin
class C() {
|
|
fun getInstance(): Runnable = C
|
|
|
|
companion object: Runnable {
|
|
override fun run(): Unit { }
|
|
}
|
|
}
|
|
|
|
fun foo() = C().getInstance()
|