Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
movePropertyToClassBody
/
parameterAnnotation.kt
blob: 6b96ebb8c94126455292710049a0132a189a9048 [
file
] [
log
] [
blame
]
@Target
(
AnnotationTarget
.
VALUE_PARAMETER
)
annotation
class
ParameterAnnotation
(
val a
:
Int
=
0
)
class
TestClass
(
private
@ParameterAnnotation
(
42
)
val
<caret>
text
:
String
=
"LoremIpsum"
,
val flag
:
Boolean
)