Files
kotlin-fork/js/js.translator/testFiles/delegateProperty/cases/topLevelVal.kt
T
2013-08-14 20:05:27 +04:00

11 lines
174 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"
}