Files
kotlin-fork/compiler/testData/debug/localVariables/jvmOverloads.kt
T
2023-12-18 21:42:35 +00:00

19 lines
376 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_STDLIB
// FILE: test.kt
class C {
@kotlin.jvm.JvmOverloads fun foo(firstParam: Int, secondParam: String = "") {
}
}
fun box() {
C().foo(4)
}
// EXPECTATIONS JVM_IR
// test.kt:10 box:
// test.kt:4 <init>:
// test.kt:10 box:
// test.kt:6 foo: firstParam:int=4:int, secondParam:java.lang.String="":java.lang.String
// test.kt:11 box: