5b77def0e0
Related to KT-7675
14 lines
196 B
Plaintext
Vendored
14 lines
196 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// HIGHLIGHT: INFORMATION
|
|
fun maybeFoo(): String? {
|
|
return "foo"
|
|
}
|
|
|
|
fun convert(x: String, y: Int) = ""
|
|
|
|
fun foo(it: Int) {
|
|
maybeFoo()?.let { it1 -> convert(it1, it) }
|
|
}
|
|
|
|
|