Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/defaultArgs.kt
T
2013-04-30 21:47:22 +04:00

10 lines
168 B
Kotlin

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