Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
946dff8bda9fd326d2b6c18f10c7545ebed12ae1
/
.
/
compiler
/
testData
/
codegen
/
properties
/
syntheticMethod
/
inClass.kt
blob: 9f0b73b7e0629f20fe3cd118205dbd38d33837ee [
file
]
@Retention
(
AnnotationRetention
.
RUNTIME
)
annotation
class
SomeAnnotation
(
val value
:
String
)
class
A
{
@SomeAnnotation
(
"OK"
)
val
property
:
Int
get
()
=
42
}