Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceProperty
/
extractExtensionWithInitializer.kt
blob: d2ef386b5945c77a4a5a3553a85dae5ada43d068 [
file
] [
log
] [
blame
]
// EXTRACTION_TARGET: property with initializer
// SIBLING:
class
A
(
val a
:
Int
){
fun foo
()
=
<selection>
a
+
1
</
selection
>
}