a13b66c58e
If no quick fix is available a special intention is shown
7 lines
136 B
Kotlin
7 lines
136 B
Kotlin
// "Suppress 'REDUNDANT_NULLABLE' for fun foo" "true"
|
|
|
|
[suppress("REDUNDANT_NULLABLE")]
|
|
fun foo() {
|
|
val a: String?<caret>? = null
|
|
}
|