[JS IR BE] Mute inline class tests
This commit is contained in:
+2
-2
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user