Files
kotlin-fork/idea/testData/quickfix/convertToAnonymousObject/lambdaInParentheses.kt
T
2020-03-28 14:13:19 +03:00

8 lines
122 B
Kotlin
Vendored

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