Files
kotlin-fork/backend.native/tests/external/codegen/box/properties/kt3118.kt
T
2017-03-13 15:31:46 +03:00

12 lines
214 B
Kotlin

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"
}