1ce99db830
#KT-54509 Fixed
15 lines
258 B
Kotlin
Vendored
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())
|
|
}
|