Change class loader in ir interpreter that is used to create proxy obj
#KT-54509 Fixed
This commit is contained in:
@@ -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())
|
||||
}
|
||||
Reference in New Issue
Block a user