blob: b95ea4ad3b48cb792dae2e849923091e0c432363 [file]
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"
}