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