Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
simpleNameWithDefaultValueSubstitution.kt
blob: b0c8e82205415b6fd7064b86334f8227d3f1d2d4 [
file
] [
log
] [
blame
]
// WITH_DEFAULT_VALUE: false
class
A
{
val prop
=
""
fun foo
()
=
bar
(
""
)
private
fun bar
(
x
:
String
):
Boolean
{
<selection>
prop
</
selection
>
return
true
}
}