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