8 lines
121 B
Kotlin
Vendored
8 lines
121 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun foo(): String
|
|
}
|
|
|
|
fun test() {
|
|
val i = <caret>I { "" }
|
|
} |