blob: c567d148666ec59268c02304329a238990ca655a [file] [log] [blame]
interface X {
infix fun plus(p: Int): Int
}
fun foo(x: X) {
x.<caret>plus(1).minus(2)
}