Files
kotlin-fork/plugins/jvm-abi-gen/testData/compile/anonymousObject/lib/lib.kt
T
2018-12-11 22:48:53 +03:00

10 lines
162 B
Kotlin
Vendored

package lib
interface Interface {
fun getInt(): Int
}
fun getInterface(): Interface =
object : Interface {
override fun getInt(): Int = 10
}