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