Files
kotlin-fork/compiler/testData/launcher/interpreterClassLoader.kt
T
2022-10-18 13:47:34 +00:00

15 lines
258 B
Kotlin
Vendored

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())
}