Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
Condition.kt
blob: ea34996c9ee0990a1126f1ced7e3fa3e93ad52e9 [
file
]
// CHECK_TYPE
fun foo
(
x
:
Int
?):
Boolean
{
val result
=
((
x
!!
==
0
)
&&
(
checkSubtype
<
Int
>(<!
DEBUG_INFO_SMARTCAST
!>
x
<!>)
==
0
))
checkSubtype
<
Int
>(<!
DEBUG_INFO_SMARTCAST
!>
x
<!>)
return
result
}