9d482bbbb1
#KT-19112 Fixed
9 lines
137 B
Kotlin
Vendored
9 lines
137 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
fun <caret>assignmentWithSum(n: Int): Int {
|
|
var result = 0
|
|
result += n
|
|
result++
|
|
--result
|
|
return result
|
|
} |