Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
script
/
topLevelLocalDelegatedProperty.kts
blob: a0e6ed346b948ad76f1bdddeb93c780e3d9c4cce [
file
]
// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63963
import
kotlin
.
reflect
.
KProperty
class
Delegate
{
operator
fun getValue
(
t
:
Any
?,
p
:
KProperty
<*>):
Int
=
3
}
val prop
:
Int
by
Delegate
()
val x
=
prop
// expected: x: 3