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