21c2268f70
Many incorrect tests fixed
7 lines
132 B
Kotlin
Vendored
7 lines
132 B
Kotlin
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for enum entry A" "true"
|
|
|
|
enum class E {
|
|
A {
|
|
fun foo(): String??<caret> = null
|
|
}
|
|
} |