Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/WrongAnnotationArgsOnObject.fir.kt
T
2020-08-04 08:59:14 +03:00

9 lines
149 B
Kotlin
Vendored

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