Files
kotlin-fork/compiler/testData/codegen/functions/privateDefaultArgs.kt
T

14 lines
193 B
Kotlin

// Check that this code doesn't contains INVOKEVIRTUAL instruction
class B {
private fun foo(i: Int = 1) {
}
fun f() {
foo(2)
}
}
fun box(): String {
return "OK"
}