8 lines
99 B
Kotlin
Vendored
8 lines
99 B
Kotlin
Vendored
interface X {
|
|
infix fun times(p: Int): Int
|
|
}
|
|
|
|
fun foo(x: X) {
|
|
(x.<caret>times(1)).div(2)
|
|
}
|