JVM IR: (Un)mute tests and add more tests for bridge generation

This commit is contained in:
Steven Schäfer
2020-02-03 14:24:47 +01:00
committed by Georgy Bronnikov
parent 12e31a1760
commit 5f6af58aeb
30 changed files with 353 additions and 9 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class SuperFoo {
public fun bar(): String {
if (this is Foo) {
@@ -14,4 +16,4 @@ class Foo : SuperFoo() {
public fun superFoo() {}
}
fun box(): String = Foo().bar()
fun box(): String = Foo().bar()
@@ -1,3 +1,5 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class A {
fun f(): String =
when (this) {