Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertAssertToIf
/
functionCallCondition.kt.after
blob: 453897bc47412cae4895dcb5a79c6a4ce2f3c9a1 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
if
(!
bar
())
{
throw
AssertionError
(
"text"
)
}
}
fun bar
():
Boolean
=
true