Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertAssertToIf
/
booleanConditionWithVariables.kt.after
blob: c4b74c42164c7676f5546e71cb17f92ca035c114 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val x
=
true
val y
=
false
if
(!(
x
||
y
))
{
throw
AssertionError
(
"text"
)
}
}