Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
MultiDeclaration.kt
blob: bc58205f36b3dc56577a0a5fe0abd86fdb55e4b6 [
file
]
// CHECK_TYPE
operator
fun
Int
.
component1
()
=
"a"
fun foo
(
a
:
Number
)
{
val
(
x
)
=
a
as
Int
checkSubtype
<
Int
>(<!
DEBUG_INFO_SMARTCAST
!>
a
<!>)
checkSubtype
<
String
>(
x
)
}