f39c3041d2
Annotation with a parameter that is not stored doesn't make any sense
9 lines
119 B
Kotlin
9 lines
119 B
Kotlin
package test
|
|
|
|
BadAnnotation(1)
|
|
object SomeObject
|
|
|
|
val some = SomeObject
|
|
|
|
annotation class BadAnnotation(val s: String)
|