Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
equalityWithSmartCastInIfBlock.fir.kt
blob: 6072c927754beec1632cf409d89d2264689edc40 [
file
]
// ISSUE: KT-46383
fun test
(
a
:
Any
,
b
:
Any
,
s
:
String
,
i
:
Int
)
{
if
(
a
is
String
&&
b
is
Int
)
{
<!
EQUALITY_NOT_APPLICABLE_WARNING
!>
a
==
b
<!>
}
<!
EQUALITY_NOT_APPLICABLE
!>
s
==
i
<!>
}