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