Fix for KT-13890: IllegalAccessError when invoking protected method with default arguments
#KT-13890 Fixed
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// FILE: Foo.kt
|
||||
|
||||
package foo
|
||||
|
||||
open class Foo() {
|
||||
protected fun foo(value: Boolean = false) = if (!value) "OK" else "fail5"
|
||||
}
|
||||
|
||||
// FILE: Bar.kt
|
||||
|
||||
package bar
|
||||
|
||||
import foo.Foo
|
||||
|
||||
class Bar() : Foo() {
|
||||
fun execute(): String {
|
||||
return { foo() } ()
|
||||
}
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
return Bar().execute()
|
||||
}
|
||||
Reference in New Issue
Block a user