Files
kotlin-fork/idea/testData/inspectionsLocal/unusedUnaryOperator/annotation.kt
T
2020-03-12 08:46:33 +00:00

6 lines
147 B
Kotlin
Vendored

// PROBLEM: none
@Target(AnnotationTarget.VALUE_PARAMETER)
annotation class Range(val min: Long = 0)
fun foo(@Range(min = -<caret>90L) x: Int) {}