blob: cd9a96fa69e23c48fba8a6493a00f6639d25ce7b [file] [log] [blame]
fun foo(p1: String?, p2: String?) {
if (!(p1?.equals(p2) ?: (p2 == null))) {
}
}