Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
cycleAnnotationOnReceiverParameterFunctionInsideLocalClass.kt
blob: dd9f6ded402b3d66ad3a6e17a3efa502a522be02 [
file
]
package
myPack
annotation
class
Anno
(
val number
:
Int
)
fun topLevelFun
()
{
class
LocalClass
{
fun
@receiver
:
Anno
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
42.function
()<!>)
Int
.
function
()
=
1
}
}