Files
kotlin-fork/js/js.translator/testData/delegateProperty/cases/topLevelVal.kt
T
2014-03-11 20:04:00 +04:00

12 lines
178 B
Kotlin

package foo
class Delegate {
fun get(t: Any?, p: PropertyMetadata): Int = 1
}
val prop: Int by Delegate()
fun box(): String {
return if (prop == 1) "OK" else "fail"
}