Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
cycleAnnotationOnFunction.kt
blob: ef6c1bfbb7e0ccc0040ed00a46953a7cd152b232 [
file
]
// FIR_IDENTICAL
package
myPack
annotation
class
Anno
(
val number
:
Int
)
@Anno
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
function
(
42
)<!>)
fun
function
(
@Anno
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
function
(
24
)<!>)
param
:
Int
=
function
(
0
))
=
1