Add test for IR serialization
This commit is contained in:
committed by
TeamCityServer
parent
f0fb0cbefe
commit
d2738c02cc
@@ -0,0 +1,13 @@
|
||||
// TARGET_BACKEND: JVM_IR
|
||||
// FILE: Base.java
|
||||
public class Base {
|
||||
public String ok() { return "OK"; }
|
||||
}
|
||||
|
||||
// FILE: Derived.kt
|
||||
class Derived: Base()
|
||||
|
||||
inline fun ok() = Derived().ok()
|
||||
|
||||
// FILE: box.kt
|
||||
fun box() = ok()
|
||||
Reference in New Issue
Block a user