Change class loader in ir interpreter that is used to create proxy obj

#KT-54509 Fixed
This commit is contained in:
Ivan Kylchik
2022-10-17 17:17:55 +02:00
committed by Space Team
parent b76fdb2efa
commit 1ce99db830
6 changed files with 50 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
package test
// for more information see KT-54509
object Test {
fun foo(): String = "foo " + this
fun bar(): String = "bar $this"
fun baz(): String = "baz " + this.toString()
}
fun main() {
println(Test.foo() + Test.bar() + Test.baz())
}