5f7dee4194
#KT-29099 Fixed
17 lines
198 B
Kotlin
Vendored
17 lines
198 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Foo {
|
|
fun foo(i: Int) {}
|
|
|
|
fun test(f: Foo) {
|
|
val f = Foo()<caret>
|
|
f.foo(1)
|
|
f.foo(2)
|
|
bar(2, this)
|
|
}
|
|
}
|
|
|
|
fun bar(i: Int, f: Foo) {}
|
|
|
|
|