mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
17 lines
311 B
Kotlin
Vendored
17 lines
311 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
class C {
|
|
@kotlin.jvm.JvmOverloads public fun foo(o: String = "O", k: String = "K"): String {
|
|
return o + k
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val c = C()
|
|
val m = c.javaClass.getMethod("foo")
|
|
return m.invoke(c) as String
|
|
}
|