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