1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
12 lines
235 B
Kotlin
12 lines
235 B
Kotlin
// KT-5786 NoSuchMethodError: no accessor for private fun with default arguments
|
|
|
|
class A {
|
|
private fun foo(result: String = "OK"): String = result
|
|
|
|
companion object {
|
|
fun bar() = A().foo()
|
|
}
|
|
}
|
|
|
|
fun box() = A.bar()
|