Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
onMultiDeclaration.kt
blob: a923b8f55ad8a2b3066d85ce45997fe252b0c152 [
file
]
fun test
():
Any
?
{
<!
WRONG_ANNOTATION_TARGET
!>
@ann
<!>
val
(
a
,
b
)
=
P
(
1
,
1
)
return
a
+
b
}
annotation
class
ann
data
class
P
(
val a
:
Int
,
val b
:
Int
)