6 lines
81 B
Kotlin
6 lines
81 B
Kotlin
trait Foo {
|
|
fun get(x : Any) : Foo
|
|
}
|
|
fun foo(x: Foo) {
|
|
<caret>(x[x])[x]
|
|
} |