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