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