Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
refs/heads/compose-dev
/
.
/
plugins
/
uast-kotlin
/
testData
/
PropertyWithAnnotation.kt
blob: 854cd7ee5506c529f887db0e828a2208c0940b76 [
file
] [
log
] [
blame
] [
edit
]
annotation
class
TestAnnotation
@TestAnnotation
val prop1
:
Int
=
0
@get
:
TestAnnotation
val prop2
:
Int
get
()
=
0
@set
:
TestAnnotation
var
prop3
:
Int
=
0
get
()
=
0
set
(
value
)
{
field
=
value
}