blob: fe363ea25135855aa09cf5dbd8ae45463bc4a0d7 [file] [log] [blame]
interface X {
infix fun times(p: Int): Int
}
fun foo(x: X) {
x times 1
}