Files
2023-06-25 10:20:43 +02:00

21 lines
312 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1698
// KJS_WITH_FULL_RUNTIME
// SKIP_DCE_DRIVEN
// RUN_UNIT_TESTS
import common.*
import kotlin.test.Test
class Simple {
@Test fun foo() {
call("foo")
}
}
fun box() = checkLog {
suite("Simple") {
test("foo") {
call("foo")
}
}
}