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