cd6384eb20
Implement DEPRECATED_MODIFIER, DEPRECATED_MODIFIER_FOR_TARGET, REDUNDANT_MODIFIER_FOR_TARGET
11 lines
182 B
Kotlin
Vendored
11 lines
182 B
Kotlin
Vendored
// See KT-9145
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
annotation class Ann
|
|
|
|
fun foo() {
|
|
for (@Ann <!WRONG_MODIFIER_TARGET!>private<!> x in 1..100) {
|
|
if (x == 1) return
|
|
}
|
|
}
|