Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
defaultValueInParens.kt.after
blob: 1b0cb84ff63554b2af9ffacac3dc22af4bca3bfe [
file
] [
log
] [
blame
]
fun foo
(
a
:
Int
,
i
:
Int
=
a
+
1
):
Int
{
val b
=
i
*
2
return
a
+
b
}
fun test
()
{
foo
(
1
)
}