mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
207 B
Kotlin
Vendored
11 lines
207 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
@Deprecated("Class") class Class {
|
|
@Deprecated("Nested") class Nested
|
|
|
|
@Deprecated("Inner") inner class Inner
|
|
|
|
@Deprecated("companion object") companion object
|
|
}
|