Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
PropertyByDelegate.kt
blob: f9eec9896d4529cccfd67e812cf06933fa45402f [
file
]
import
kotlin
.
properties
.
Delegates
val prop
:
Int
by
Delegates
.
lazy
{
print
(
1
)
val v
=
f
()
<caret>
g
()
v
+
1
}
fun f
():
Int
=
1
fun g
():
Int
=
2