10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
fun test() {
|
|
class Test{
|
|
operator fun get(fn: (i: Int) -> Int) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test<caret>[{ i ->
|
|
i
|
|
}]
|
|
}
|