Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
refs/heads/compose-dev
/
.
/
plugins
/
uast-kotlin
/
testData
/
DestructuringDeclaration.kt
blob: 299c4bcb4e18ddfb23e000ca8426553c57fe0853 [
file
] [
log
] [
blame
] [
edit
]
fun foo
(
data
:
Any
)
{
val
(
a
,
b
)
=
"foo"
to
1
@Suppress
(
"UNCHECKED_CAST"
)
val
(
k
,
v
)
=
data
as
Pair
<
String
,
String
>
}