blob: 2db5da9cf66e0c6b2281f6ab916010ee59d45be7 [file] [log] [blame]
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())
}