Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
partialSubstitution.kt
blob: b4652cab4e52f4a9304b5826143061b2f65c02de [
file
] [
log
] [
blame
]
// WITH_DEFAULT_VALUE: false
fun foo
(
a
:
Int
):
Int
{
val b
=
1
return
(<
selection
>
a
+
b
</
selection
>)
*
2
}
fun test
()
{
foo
(
1
)
}