Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
getOrBuildFir
/
annotations
/
destructuringAnnotation.kts
blob: 7e290b34dfb6eea514bd9810ac9a44434a4ecb76 [
file
]
// LOOK_UP_FOR_ELEMENT_OF_TYPE: org.jetbrains.kotlin.psi.KtAnnotationEntry
data
class
MyPair
(
val a
:
Int
,
val b
:
Int
)
const
val prop
=
0
annotation
class
DestrAnno
(
val s
:
String
)
<expr>
@DestrAnno
(
"destr 1 $prop"
)</
expr
>
val
(
a
,
b
)
=
MyPair
(
1
,
2
)