9 lines
110 B
Kotlin
9 lines
110 B
Kotlin
// IS_APPLICABLE: false
|
|
trait Foo {
|
|
fun foo(a: Int, b: Int)
|
|
}
|
|
|
|
fun foo(x: Foo) {
|
|
x.<caret>foo(1, 2)
|
|
}
|