147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
12 lines
218 B
Kotlin
Vendored
12 lines
218 B
Kotlin
Vendored
// "Convert to anonymous object" "false"
|
|
// ACTION: Introduce import alias
|
|
// ERROR: Interface I does not have constructors
|
|
interface I {
|
|
fun foo(): String
|
|
fun bar(): Unit
|
|
}
|
|
|
|
fun test() {
|
|
<caret>I {
|
|
}
|
|
} |