blob: 11007910864f736a72089ac726268b872ff1b904 [file]
interface A {
fun test() = "OK"
}
fun main() {
println(object : A {}.test())
}