Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
RecursivelyAnnotatedProperty.kt
blob: cb0fff775d8b1e57e39a0bfe38414fa2d0c3f622 [
file
]
// FIR_IDENTICAL
// Properties can be recursively annotated
annotation
class
ann
(
val x
:
Int
)
class
My
{
@ann
(<!
ANNOTATION_ARGUMENT_MUST_BE_CONST
!>
x
<!>)
val x
:
Int
=
1
}