fbe558a0de
^KTIJ-25112 Fixed
9 lines
120 B
Kotlin
Vendored
9 lines
120 B
Kotlin
Vendored
private fun test(s: String?) {
|
|
if (s != null) {
|
|
<expr>foo(s)</expr>
|
|
}
|
|
}
|
|
|
|
private fun foo(s: String) {
|
|
}
|