Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
lastStatement3.kt
blob: 4be4ab5be2feb53bdd2623a2f067e3603c0e7542 [
file
] [
log
] [
blame
]
fun foo
(
p
:
Int
)
{
val x
=
2
if
(
p
>
0
)
{
<caret>
if
(
x
>
1
)
bar
()
}
}
fun bar
(){}