a13b66c58e
If no quick fix is available a special intention is shown
7 lines
125 B
Kotlin
7 lines
125 B
Kotlin
// "Suppress 'REDUNDANT_NULLABLE' for enum entry A" "true"
|
|
|
|
enum class E {
|
|
A {
|
|
fun foo(): String?? = null
|
|
}
|
|
} |