Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceProperty
/
extractLazyMultipleExpressions.kt.after
blob: 663ad92ea9ac579daca8ac7a5ccb59564d7b1773 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// EXTRACTION_TARGET: lazy property
class
A
{
private
val i
:
Int
by
lazy
{
val a
=
1
+
2
val b
=
a
*
2
b
}
fun foo
():
Int
{
val b
=
i
val c
=
b
-
1
}
}