Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/enumEntry.kt
T
Valentin Kipyatkov 21c2268f70 Protection against "<caret>" missing in test data
Many incorrect tests fixed
2016-09-27 18:05:26 +03:00

7 lines
132 B
Kotlin
Vendored

// "Suppress 'REDUNDANT_NULLABLE' for enum entry A" "true"
enum class E {
A {
fun foo(): String??<caret> = null
}
}