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