10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
package lib
|
|
|
|
interface Interface {
|
|
fun getInt(): Int
|
|
}
|
|
|
|
fun getInterface(): Interface =
|
|
object : Interface {
|
|
override fun getInt(): Int = 10
|
|
} |