Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertAssertToIf
/
booleanConditionWithVariables.kt
blob: 4e706b88e2fa5921b2ee1d2d8daa9b437ad69eb2 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val x
=
true
val y
=
false
<caret>
assert
(
x
||
y
)
{
"text"
}
}