mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
346 B
Kotlin
Vendored
13 lines
346 B
Kotlin
Vendored
// ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
enum class E { ENTRY }
|
|
|
|
annotation class StringOptions(vararg val option: String)
|
|
annotation class EnumOption(val option: E)
|
|
|
|
annotation class OptionGroups(val o1: StringOptions, val o2: EnumOption)
|
|
|
|
OptionGroups(StringOptions("abc", "d", "ef"), EnumOption(E.ENTRY))
|
|
public class AnnotationInAnnotationArguments
|