Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceProperty
/
extractFromDefaultValueInFun.kt.after
blob: 5cddc99dd7514b0dc62a99e5156cbf6e9ccd517d [
file
] [
log
] [
blame
]
// EXTRACTION_TARGET: property with initializer
class
A
{
private
val i
=
1
+
2
fun foo
(
a
:
Int
=
i
)
{
}
}