12 lines
178 B
Kotlin
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"
|
|
}
|