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