Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
substituteCallExpressions.kt.after
blob: 755683ecf109b02d5c9209407d5bfbaae9f2323a [
file
] [
log
] [
blame
]
// WITH_DEFAULT_VALUE: false
fun foo
(
i
:
Int
):
Int
{
return
i
/
2
}
fun test
()
{
foo
(
1.plus
(
2
)
*
3.minus
(
4
))
}