mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
18 lines
527 B
Plaintext
Vendored
18 lines
527 B
Plaintext
Vendored
package test
|
|
|
|
@kotlin.Deprecated(message = "Class") public final class Class {
|
|
/*primary*/ public constructor Class()
|
|
|
|
@kotlin.Deprecated(message = "companion object") public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
}
|
|
|
|
@kotlin.Deprecated(message = "Inner") public final inner class Inner {
|
|
/*primary*/ public constructor Inner()
|
|
}
|
|
|
|
@kotlin.Deprecated(message = "Nested") public final class Nested {
|
|
/*primary*/ public constructor Nested()
|
|
}
|
|
}
|