Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
refs/heads/compose-dev
/
.
/
plugins
/
uast-kotlin
/
testData
/
ClassAnnotation.kt
blob: 4ae0a54917e0190436f4a2639c73f563eb625244 [
file
] [
log
] [
blame
] [
edit
]
@Test
class
A
annotation
class
MyAnnotation
(
val text
:
String
)
@MyAnnotation
(
"class"
)
class
B
{
@MyAnnotation
(
"inB class"
)
class
InB
{
}
@MyAnnotation
(
"companion"
)
companion
object
{
}
}
@MyAnnotation
(
"object"
)
object
Obj