Files
kotlin-fork/idea/testData/quickfix/suppress/availability/localValSuppressForVal.kt.after
T
Mikhail Glukhikh 55ff519aa8 Fix KtModifierListOwner.addAnnotation (case without modifier list)
Now add annotation to primary constructor should work correctly,
and may be some other related cases too.

Related to KT-25548
2018-09-06 11:10:05 +03:00

6 lines
133 B
Plaintext
Vendored

// "Suppress 'REDUNDANT_NULLABLE' for val a" "true"
fun foo() {
@Suppress("REDUNDANT_NULLABLE") val a: String?<caret>? = null
}