4 lines
66 B
Kotlin
Vendored
4 lines
66 B
Kotlin
Vendored
inline fun foo(s: String = "O") = s
|
|
|
|
fun box() = foo() + foo("K")
|