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