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