7 lines
87 B
Kotlin
Vendored
7 lines
87 B
Kotlin
Vendored
interface A {
|
|
fun test() = "OK"
|
|
}
|
|
|
|
fun main() {
|
|
println(object : A {}.test())
|
|
} |