FIR JS: temporarily mute remaining codegen tests

This commit is contained in:
Ilya Chernikov
2022-08-22 16:46:30 +02:00
parent 78ca733c38
commit 7e4ee399c8
23 changed files with 26 additions and 0 deletions
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR
enum class Test {
A(0),
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR
enum class Test(val x: Int, val str: String) {
OK;
constructor(x: Int = 0) : this(x, "OK")
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR
enum class Test(val x: Int, val str: String) {
OK;
constructor(vararg xs: Int) : this(xs.size + 42, "OK")
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_K2: JS_IR
package test
enum class My(val s: String) {