Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
serialization
/
builtinsSerializer
/
propertyAccessorAnnotations.kt
blob: 0625e5676ed399bc35bab4edd954be3bd656c82e [
file
]
// FIR_DIFFERENCE
package
test
annotation
class
Anno
(
val value
:
String
)
@Anno
(
"property"
)
val v1
=
""
var
v2
:
String
@Anno
(
"getter"
)
get
()
=
""
@Anno
(
"setter"
)
set
(
@Anno
(
"setparam"
)
value
)
{
}