Files
kotlin/compiler/testData/codegen/box/defaultArguments/protected.kt
2016-10-26 12:13:20 +03:00

23 lines
311 B
Kotlin
Vendored

// 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()
}