blob: a01e660695c3f1bb9f9521dd1eff312f6f11bc56 [file] [log] [blame]
interface X {
infix fun infix(p: Int): X
}
fun foo(x: X) {
x.in<caret>fix(1)
}