mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
172 B
Kotlin
Vendored
11 lines
172 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
annotation class Anno(vararg val t: String)
|
|
|
|
@Anno("live", "long") fun foo() {}
|
|
|
|
@field:Anno("prosper") val bar = 42
|
|
|
|
@Anno() fun baz() {}
|