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