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