09304bbd54
#KT-31912 Fixed
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun foo(): String
|
|
}
|
|
|
|
fun test() {
|
|
val i = <caret>I({ "" })
|
|
} |