mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
22 lines
252 B
Kotlin
Vendored
22 lines
252 B
Kotlin
Vendored
@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 |