mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
8 lines
160 B
Kotlin
Vendored
8 lines
160 B
Kotlin
Vendored
// C
|
|
|
|
class C {
|
|
@[kotlin.jvm.JvmOverloads] public fun foo(o: String = "O", s1: String, k: String = "K", s2: String?): String {
|
|
return o + k
|
|
}
|
|
}
|