Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
cycleAnnotationOnReceiverParameterPropertyInsideLocalClass.kt
blob: 22e35a6ef0937d0c976cb2244ca97b991fcc7a13 [
file
]
package
myPack
annotation
class
Anno
(
val number
:
Int
)
fun topLevelFun
()
{
class
LocalClass
{
val
@receiver
:
Anno
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
42.prop
<!>)
Int
.
prop
get
()
=
22
}
}