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

11 lines
137 B
Kotlin
Vendored

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