Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
prop
/
VarWithDelegated.kt
blob: 19b04a271a422bf221a2c20c953fabb053cfa7d5 [
file
] [
log
] [
blame
]
//ALLOW_AST_ACCESS
package
test
import
kotlin
.
reflect
.
KProperty
class
A
{
var
a
by
MyProperty
()
}
class
MyProperty
<
T
>
{
operator
fun getValue
(
t
:
T
,
p
:
KProperty
<*>):
Int
=
42
operator
fun setValue
(
t
:
T
,
p
:
KProperty
<*>,
i
:
Int
)
{}
}