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