Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
)
}