Fix for KT-13890: IllegalAccessError when invoking protected method with default arguments

#KT-13890 Fixed
This commit is contained in:
Michael Bogdanov
2016-10-25 12:15:21 +03:00
parent 1e59161e8f
commit eaf9c2e8b0
4 changed files with 39 additions and 5 deletions
@@ -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()
}