Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/VarWithDelegated.kt
T

11 lines
204 B
Kotlin
Vendored

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