Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertIfWithThrowToAssert
/
inapplicableHasElse.kt
blob: 9709dffc68e90480eb4b050b650140c67a747df5 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo
()
{
if
<caret>
(
1
==
0
)
{
throw
AssertionError
(
"text"
)
}
else
{
val x
=
1
}
}