Unmute ir-tests after CR support

This commit is contained in:
Mikhael Bogdanov
2018-08-08 12:28:18 +03:00
parent 6b5b9fbde4
commit 357359b1dd
352 changed files with 6 additions and 352 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
val foo1 = fun Any.(): String {
return "239" + this
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun Any.foo1() : ()-> String {
return { "239" + this }
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun foo(block: (String, String, String) -> String): String = block("O", "fail", "K")
fun box() = foo(fun(x: String, _: String, y: String) = x + y)