Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
movePropertyToClassBody
/
propertyAnnotation.kt
blob: 5dda6ded2dee7bdb41891168125778319172289c [
file
] [
log
] [
blame
]
@Target
(
AnnotationTarget
.
PROPERTY
,
AnnotationTarget
.
FIELD
)
annotation
class
PropertyAnnotation
(
val a
:
Int
=
0
)
class
TestClass
(
private
@PropertyAnnotation
(
42
)
val
<caret>
text
:
String
=
"LoremIpsum"
)