Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
BinaryExpressionContainsConvention.fir.kt
blob: a28fe53fc660ae57062d1754bb33c33608bd5b5c [
file
]
// CHECK_TYPE
fun foo
(
x
:
Number
):
Boolean
{
val result
=
(
x
as
Int
)
in
1.
.
5
checkSubtype
<
Int
>(
x
)
return
result
}