blob: 931dd42628a1cdcb9e90563e5ec68cb0cdfc6b04 [file]
// "Convert to anonymous object" "true"
interface I {
fun a()
fun b() {}
}
fun foo(i: I) {}
fun test() {
foo(<caret>I {})
}