13 lines
141 B
Kotlin
Vendored
13 lines
141 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun bar(): Unit
|
|
}
|
|
|
|
fun foo() {
|
|
}
|
|
|
|
fun test() {
|
|
<caret>I {
|
|
foo()
|
|
}
|
|
} |