blob: 91cbed5a53da6f475574061f610cc60e804e28c6 [file]
// "Convert to anonymous object" "true"
interface I0 {
fun x() {}
}
interface I : I0() {
fun a()
val b: Int
get() = 1
}
fun foo(i: I) {}
fun test() {
foo(object : I {
override fun a() {
}
})
}