Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
analysis
/
low-level-api-fir
/
testData
/
lazyResolve
/
classMembers.kt
blob: bbbf877a304e8e80b98c25a460bd9646d678f5bc [
file
]
class
A
{
fun resolve
<caret>
Me
()
{
receive
(
functionWithLazyBody
())
}
val x
:
Int
=
10
get
()
=
field
set
(
value
)
{
field
=
value
}
fun receive
(
value
:
String
)
{}
fun functionWithLazyBody
():
String
{
return
"42"
}
}