Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertIfWithThrowToAssert
/
booleanCondition.kt
blob: 42128a65196690a035ba3b01ef7e0b3dcf350585 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val x
=
true
if
<caret>
(
x
&&
false
)
{
throw
AssertionError
(
"text"
)
}
}