e955dcfc14
#KT-30975 Fixed
10 lines
113 B
Plaintext
Vendored
10 lines
113 B
Plaintext
Vendored
fun test() {
|
|
<caret>use(create())
|
|
foo()
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {}
|
|
|
|
fun foo() {} |