blob: 7fda0569ca9514757ea77766c71a2a0d64aa03b9 [file]
// IGNORE_BACKEND_FIR: JVM_IR
package testing
class Test {
private val hello: String
get() { return "hello" }
fun sayHello() : String = hello
}
fun box(): String {
return if (Test().sayHello() == "hello") "OK" else "fail"
}