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