Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/VarWithDelegated.kt

11 lines
194 B
Kotlin

//ALLOW_AST_ACCESS
package test
class A {
var a by MyProperty()
}
class MyProperty<T> {
fun get(t: T, p: PropertyMetadata): Int = 42
fun set(t: T, p: PropertyMetadata, i: Int) {}
}