mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
12 lines
132 B
Kotlin
Vendored
12 lines
132 B
Kotlin
Vendored
// p.E
|
|
// test for KT-8874
|
|
|
|
package p
|
|
|
|
enum class E {
|
|
@Deprecated("a")
|
|
Entry1,
|
|
Entry2,
|
|
@Deprecated("b")
|
|
Entry3
|
|
} |