mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
23 lines
311 B
Kotlin
Vendored
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()
|
|
} |