[JS IR BE] Unmute tests

This commit is contained in:
Svyatoslav Kuzmich
2018-10-10 17:27:18 +03:00
parent e73ff16b35
commit 89f7ced0d4
6 changed files with 0 additions and 6 deletions
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
val a1: Byte = 1.unaryMinus()
val a2: Short = 1.unaryMinus()
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
val a1: Byte? = 1.unaryMinus()
val a2: Short? = 1.unaryMinus()
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
val a: Long = -(1 shl 31)
if (a != -2147483648L) return "fail: in this case we should add to ints and than cast the result to long - overflow expected"