8 lines
161 B
Plaintext
Vendored
8 lines
161 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for enum entry A" "true"
|
|
|
|
enum class E {
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
A {
|
|
fun foo(): String?? = null
|
|
}
|
|
} |