Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
WhenEntryCondition.kt
blob: 95d61ad347c831fc88f7adbe7261294b41c0e92d [
file
] [
log
] [
blame
]
fun f
(
x
:
Int
)
{
val y
=
if
(
x
<
0
)
1
else
when
{
<selection>
x
-
1
</
selection
>
<
1
->
2
else
->
3
}
}