[JS IR BE] Remove unnecesary println from tests

This commit is contained in:
Svyatoslav Kuzmich
2019-03-01 01:52:37 +03:00
parent d203e062bb
commit 0f07209490
3 changed files with 4 additions and 8 deletions
@@ -1,5 +1,4 @@
// EXPECTED_REACHABLE_NODES: 1282
// IGNORE_BACKEND: JS_IR
interface I {
fun ok(): String
@@ -17,8 +16,6 @@ inline fun convolutedOk(): I {
override fun ok() = "fail"
}.ok()
println(fail)
return ok()
}