[JVM_IR] Avoid using special names in static inline class replacements.

Fixes KT-46952
This commit is contained in:
Mads Ager
2021-05-27 15:55:39 +02:00
committed by Alexander Udalov
parent b1ab597616
commit f846dd8ea2
12 changed files with 64 additions and 7 deletions
@@ -0,0 +1,8 @@
inline class C(val s: String)
fun f(g: () -> C): C = g()
val C.foo: C
get() = f { this }
fun box() = C("OK").foo.s