// WITH_RUNTIME // INTENTION_TEXT: Replace '==' with 'contentEquals' fun foo() { val a = arrayOf("a", "b", "c") val b = arrayOf("a", "b", "c") if (a == b) { } }