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