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

20 lines
240 B
Plaintext
Vendored

// "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() {
}
})
}