Remove duplicate tests from JS compiler test set. Merge chages to common compiler tests

This commit is contained in:
Svyatoslav Kuzmich
2019-02-18 15:40:23 +03:00
parent a736756ceb
commit beb5f73a2b
80 changed files with 56 additions and 2086 deletions
@@ -2,5 +2,12 @@ fun foo() = "OK"
fun box(): String {
val x = ::foo
return x()
var r = x()
if (r != "OK") return r
r = run(::foo)
if (r != "OK") return r
return "OK"
}