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

7 lines
140 B
Kotlin
Vendored

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