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

6 lines
150 B
Kotlin
Vendored

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