9 lines
122 B
Kotlin
Vendored
9 lines
122 B
Kotlin
Vendored
class A {}
|
|
|
|
fun foo(a: A) {}
|
|
fun foo(a: A, s: String) {}
|
|
fun foo(a: A, any: Any) {}
|
|
|
|
fun bar() {
|
|
<caret>foo(A(), "")
|
|
} |