c1f43558b9
#KT-14788 Fixed
13 lines
163 B
Kotlin
Vendored
13 lines
163 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
val i = 1
|
|
val test = Test()
|
|
foo(test.qux<caret>(i))
|
|
}
|
|
|
|
fun foo(i: Int) {}
|
|
|
|
class Test {
|
|
fun qux(i: Int) = 1
|
|
}
|