JVM_IR. Support inlining of bound CR

This commit is contained in:
Mikhael Bogdanov
2019-11-20 10:56:53 +01:00
parent 42deb7db48
commit 4b6202c902
9 changed files with 54 additions and 4 deletions
@@ -0,0 +1,15 @@
// FILE: 1.kt
package test
class Z
class Q {
inline fun f(z: Z) = "OK"
}
// FILE: 2.kt
import test.*
fun box(): String {
return Z().run(Q()::f)
}