// IS_APPLICABLE: false // ERROR: 'infix' modifier is inapplicable on this function: must have a single value parameter interface Foo { infix fun foo(a: Int, b: Int) } fun foo(x: Foo) { x.foo(1, 2) }