blob: 5d93fa340595bb58ebe540b141a70dcf3bcfad2f [file]
// "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 {
}
}