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