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