6752df189d
(cherry picked from commit 2744309)
10 lines
214 B
Kotlin
Vendored
10 lines
214 B
Kotlin
Vendored
// 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.<caret>foo(1, 2)
|
|
}
|