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