Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
MultiDeclaration.fir.kt
blob: 188b08716b75a8ece271b193d078aefe0bb95ef1 [
file
]
annotation
class
Ann
data
class
Pair
(
val x
:
Int
,
val y
:
Int
)
fun foo
():
Int
{
@Ann
val
(
a
,
b
)
=
Pair
(
12
,
34
)
@<!
UNRESOLVED_REFERENCE
!>
Err
<!>
val
(
c
,
d
)
=
Pair
(
56
,
78
)
return
a
+
b
+
c
+
d
}