mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
126 B
Kotlin
Vendored
9 lines
126 B
Kotlin
Vendored
fun f(s: String?): String {
|
|
return "$s"
|
|
}
|
|
|
|
fun box(): String {
|
|
if (f(null) != "null") return "Fail"
|
|
return "OK"
|
|
}
|