Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
shadowing
/
ShadowMultiDeclarationWithFunParameter.fir.kt
blob: 07545f7fd7af3ed133434f4cc3c501e1d80d63f1 [
file
]
class
A
{
operator
fun component1
()
=
42
operator
fun component2
()
=
42
}
fun foo
(
a
:
A
,
c
:
Int
)
{
val
(
a
,
b
)
=
a
val arr
=
Array
(
2
)
{
A
()
}
for
((
c
,
d
)
in
arr
)
{
}
val e
=
a
.
toString
()
+
b
+
c
}