mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
203 B
Kotlin
11 lines
203 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
deprecated("Class") class Class {
|
|
deprecated("Nested") class Nested
|
|
|
|
deprecated("Inner") inner class Inner
|
|
|
|
deprecated("companion object") companion object
|
|
}
|