Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceProperty
/
extractWithGetterToClass.kt
blob: 93e554a7f0db8c41d3bd43afaa35f5eba829380d [
file
] [
log
] [
blame
]
// EXTRACTION_TARGET: property with getter
class
A
(
val n
:
Int
=
1
)
{
val m
:
Int
=
2
fun foo
():
Int
{
return
<selection>
m
+
n
+
1
</
selection
>
}
}