f2accb7b9e
#KT-16067 Fixed
7 lines
107 B
Plaintext
Vendored
7 lines
107 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo(s: String?) {
|
|
val x = s?.let { bar(it) } ?: 13
|
|
}
|
|
|
|
fun bar(s: String): Int = 42 |