Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
convertBinaryExpressionWithDemorgansLaw
/
noNegationPrefix4.kt.after
blob: 5d075b226256371428b58d8ee3f8df1636b0c852 [
file
]
// INTENTION_TEXT: Replace '&&' with '||'
fun foo
(
a
:
Boolean
,
b
:
Boolean
)
:
Boolean
{
return
!(
a
||
b
)
}