Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
substituteCallExpressions.kt
blob: f235f068ca757acdd5b085eed7361a2116c411d1 [
file
] [
log
] [
blame
]
// WITH_DEFAULT_VALUE: false
fun foo
(
a
:
Int
,
b
:
Int
):
Int
{
return
<selection>
a
*
b
<
/selection> /
2
}
fun test
()
{
foo
(
1.plus
(
2
),
3.minus
(
4
))
}