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

13 lines
141 B
Kotlin
Vendored

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