Files
kotlin-fork/js/js.translator/testData/box/objectDeclaration/objectInheritingFromATrait.kt
T
2018-09-12 09:49:25 +03:00

26 lines
442 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1293
package foo
interface Foo {
fun execute(handler: () -> Unit) {
execute(false, handler)
}
fun execute(onlyIfAttached: Boolean, handler: () -> Unit)
}
object foo : Foo {
override fun execute(onlyIfAttached: Boolean, handler: () -> Unit) {
handler()
}
}
private var result = "fail"
fun box(): String {
foo.execute() {
result = "OK"
}
return result
}