Files
kotlin-fork/compiler/testData/codegen/box/classes/kt1759.kt
T
2019-11-19 11:00:09 +03:00

12 lines
186 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class Greeter(var name : String) {
fun greet() {
name = name.plus("")
}
}
fun box() : String {
Greeter("OK").greet()
return "OK"
}