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