Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
operatorToFunction
/
binarayNotEqNullable.kt.after
blob: cd9a96fa69e23c48fba8a6493a00f6639d25ce7b [
file
] [
log
] [
blame
]
fun foo
(
p1
:
String
?,
p2
:
String
?)
{
if
(!(
p1
?.
equals
(
p2
)
?:
(
p2
==
null
)))
{
}
}