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

16 lines
195 B
Kotlin
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(<caret>I {})
}