[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
+2 -2
View File
@@ -1,5 +1,4 @@
// IGNORE_BACKEND: JS_IR
// KJS_WITH_FULL_RUNTIME
// EXPECTED_REACHABLE_NODES: 1230
// GENERATE_SOURCE_MAPS
// FILE: Enum.kt
@@ -13,7 +12,8 @@ enum class Enum {
// RECOMPILE
fun box(): String {
println(Enum.A)
if (Enum.A.name != "A")
return "Fail"
return "OK"
}