mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
273 B
Kotlin
Vendored
12 lines
273 B
Kotlin
Vendored
@Retention(AnnotationRetention.RUNTIME)
|
|
internal annotation class Ann(
|
|
val i: Int,
|
|
val s: Short,
|
|
val f: Float,
|
|
val d: Double,
|
|
val l: Long,
|
|
val b: Byte,
|
|
val bool: Boolean,
|
|
val c: Char,
|
|
val str: String
|
|
) |