7 lines
87 B
Kotlin
Vendored
7 lines
87 B
Kotlin
Vendored
interface X {
|
|
infix fun infix(p: Int): X
|
|
}
|
|
|
|
fun foo(x: X) {
|
|
x.in<caret>fix(1)
|
|
} |