JVM IR: Remove IrReplacementFunction

This commit is contained in:
Steven Schäfer
2019-11-21 11:00:44 +01:00
committed by Georgy Bronnikov
parent 73b4f897b6
commit 66cbe3b1a8
4 changed files with 60 additions and 91 deletions
@@ -1,5 +1,6 @@
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND_FIR: JVM_IR
// IGNORE_BACKEND: JVM_IR
abstract class GenericBase<T> {
abstract fun foo(x: T): T
@@ -21,4 +22,4 @@ fun box(): String {
if (Derived().foo("OK") != "OK") throw AssertionError()
return "OK"
}
}