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

11 lines
184 B
Kotlin
Vendored

// "Convert to anonymous object" "false"
// ERROR: Interface I does not have constructors
interface I {
fun foo(): String
fun bar(): Unit
}
fun test() {
<caret>I {
}
}