Files
kotlin-fork/idea/testData/quickfix/convertToAnonymousObject/simple.kt
T

8 lines
121 B
Kotlin
Vendored

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