f39c3041d2
Annotation with a parameter that is not stored doesn't make any sense
11 lines
163 B
Kotlin
11 lines
163 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
annotation class Anno(vararg val t: String)
|
|
|
|
Anno("live", "long") fun foo() {}
|
|
|
|
Anno("prosper") val bar = 42
|
|
|
|
Anno() fun baz() {}
|