10 lines
138 B
Kotlin
Vendored
10 lines
138 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun foo(a: String, b: Int): Int
|
|
}
|
|
|
|
fun test() {
|
|
<caret>I {
|
|
1
|
|
}
|
|
} |