Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
movePropertyToClassBody
/
propertyAnnotation.kt.after
blob: 2a986e0a17294e770061201c1e7899f82e398aa0 [
file
] [
log
] [
blame
]
@Target
(
AnnotationTarget
.
PROPERTY
,
AnnotationTarget
.
FIELD
)
annotation
class
PropertyAnnotation
(
val a
:
Int
=
0
)
class
TestClass
(
text
:
String
=
"LoremIpsum"
)
{
private
@PropertyAnnotation
(
42
)
val text
=
text
}