09304bbd54
#KT-31912 Fixed
11 lines
238 B
Kotlin
Vendored
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()
|
|
} |