JS IR: unmute tests

This commit is contained in:
Anton Bannykh
2018-06-20 17:07:46 +03:00
parent c077b3ca5d
commit 9039b75c25
42 changed files with 0 additions and 42 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
open abstract class B {
fun foo(arg: Int = 239 + 1) : Int = arg
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
open abstract class B {
abstract fun foo2(arg: Int = 239) : Int
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
class A(val expected: Int) {
fun foo(x: Int, y: Int = x + 20, z: Int = y * 2) = z == expected
}
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
fun foo(i: Int, j: Int = i) = j
fun box() = if (foo(1) == 1) "OK" else "fail"