Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/WrongAnnotationArgsOnObject.fir.kt
T

8 lines
119 B
Kotlin
Vendored

package test
@BadAnnotation(1)
object SomeObject
val some = SomeObject
annotation class BadAnnotation(val s: String)