Files
kotlin-fork/js/js.translator/testData/box/objectDeclaration/objectInheritingFromATrait.kt
T

26 lines
441 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 500
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
}