6 lines
84 B
Kotlin
Vendored
6 lines
84 B
Kotlin
Vendored
internal class C {
|
|
fun foo(s: String?): String {
|
|
return s ?: ""
|
|
}
|
|
}
|