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