blob: 5d075b226256371428b58d8ee3f8df1636b0c852 [file]
// INTENTION_TEXT: Replace '&&' with '||'
fun foo(a: Boolean, b: Boolean) : Boolean {
return !(a || b)
}