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