Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
refactoring
/
introduceProperty
/
extractWithInitializerMultipleExpressions.kt
blob: ffec09b1478d14fc5c7f83170a41a78f2870e750 [
file
] [
log
] [
blame
]
// EXTRACTION_TARGET: property with initializer
class
A
{
fun foo
():
Int
{
<selection>
val a
=
1
+
2
val b
=
a
*
2
</
selection
>
val c
=
b
-
1
}
}