Files
kotlin-fork/compiler/testData/loadKotlin/annotations/classes/Deprecated.kt
T
Alexander Udalov 4aeeafdff0 Deserialize annotations on classes
First version, not all kinds of value arguments of annotations are supported
2013-08-23 17:39:18 +04:00

10 lines
176 B
Kotlin

package test
deprecated("Class") class Class {
deprecated("Nested") class Nested
deprecated("Inner") inner class Inner
deprecated("class object") class object
}