e955dcfc14
#KT-30975 Fixed
11 lines
165 B
Plaintext
Vendored
11 lines
165 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
val x = <caret>run {
|
|
val a = create()
|
|
use(a, a)
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String, t: String) {} |