Files
kotlin-fork/idea/testData/quickfix/convertToAnonymousObject/hasConcreateMember.kt.after
T
2020-06-01 21:42:03 +09:00

15 lines
182 B
Plaintext
Vendored

// "Convert to anonymous object" "true"
interface I {
fun a()
fun b() {}
}
fun foo(i: I) {}
fun test() {
foo(object : I {
override fun a() {
}
})
}