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