Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
removeElse
/
else.kt
blob: 99d795908f0a36fce5a35db6c436cd465fb54577 [
file
] [
log
] [
blame
]
// OPTION: 1
fun foo
(
n
:
Int
):
Int
{
return
if
(
n
>
0
)
{
n
+
10
}
<caret>
else
{
n
-
10
}
}