4d9b19da82
#KT-18539 Fixed
11 lines
153 B
Plaintext
Vendored
11 lines
153 B
Plaintext
Vendored
// "Create function 'foo'" "true"
|
|
|
|
fun test(s: String?) {
|
|
if (s == null) return
|
|
foo(s)
|
|
}
|
|
|
|
fun foo(s: String) {
|
|
TODO("Not yet implemented")
|
|
}
|