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

10 lines
138 B
Kotlin
Vendored

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