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
data class A(val a: Double, val b: Double)
fun box() : String {
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
data class A(val a: Int, val b: String) {}
fun box() : String {
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
data class A(var a: Int, var b: String) {}
fun box() : String {
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JS_IR
data class A(val o: String, val k: String) {
constructor() : this("O", "k")
}