blob: c069e4354751a2cf6f76663f73cccecf5d922a99 [file]
// "Convert to anonymous object" "true"
interface I {
fun foo(a: String, b: Int): Int
}
fun test() {
object : I {
override fun foo(a: String, b: Int): Int {
return 1
}
}
}