Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
Condition.kt
blob: e83a9da3dda6f14ac00b474dae8904f7950c9868 [
file
] [
log
] [
blame
]
// !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
}