Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertAssertToIf
/
booleanConditionSimplified.kt.after
blob: 4bcf747a4c8d6120046285e525e205caaab3b040 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
if
(
1
<=
0
)
{
throw
AssertionError
(
"text"
)
}
}