Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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