mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
174 B
Kotlin
Vendored
12 lines
174 B
Kotlin
Vendored
package test
|
|
|
|
annotation class AAA
|
|
|
|
enum class MyEnum(@param:AAA @property:Deprecated("") val ord: Int) {
|
|
ENTRY(239);
|
|
|
|
fun f(@java.lang.Deprecated p: Int) {
|
|
|
|
}
|
|
}
|