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

11 lines
238 B
Kotlin
Vendored

// "Convert to anonymous object" "false"
// ACTION: Introduce import alias
// ACTION: Split property declaration
// ERROR: Interface I does not have constructors
interface I {
fun foo(): String
}
fun test() {
val i = <caret>I()
}