[JS IR BE] Mute inline class tests

This commit is contained in:
Svyatoslav Kuzmich
2018-11-01 14:16:36 +03:00
parent 43b4b6eaae
commit 5ea7673950
4 changed files with 6 additions and 6 deletions
@@ -1,5 +1,5 @@
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JVM_IR, JS_IR
interface IFoo<T : IFoo<T>> {
fun T.foo(): String = bar()
@@ -36,4 +36,4 @@ fun box(): String {
S("").testS()
return "OK"
}
}
@@ -1,5 +1,5 @@
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JVM_IR, JS_IR
interface IFoo<T : IFoo<T>> {
fun foo(t: T): String = t.bar()
@@ -11,4 +11,4 @@ inline class Z(val x: Int) : IFoo<Z> {
}
fun box(): String =
Z(1).foo(Z(2))
Z(1).foo(Z(2))