Files
kotlin-fork/idea/testData/quickfix/suppress/availability/localValSuppressForVal.kt.after
T

7 lines
137 B
Plaintext

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