Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
cycleAnnotationOnReceiverParameterProperty.kt
blob: 1d99e9e7fdb3021431b8807edaea6f4df55142be [
file
]
// FIR_IDENTICAL
package
myPack
annotation
class
Anno
(
val number
:
Int
)
val
@receiver
:
Anno
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
42.prop
<!>)
Int
.
prop
get
()
=
22