Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
functionUnusedParameter.kt
blob: 42a2399bdcfcbd9914fc61e9fb2790aa1ed24f77 [
file
] [
log
] [
blame
]
fun foo
(
a
:
Int
,
s
:
String
):
Int
{
return
(<
selection
>
a
+
1
</
selection
>)
*
2
}
fun test
()
{
foo
(
1
,
"2"
)
}