Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/enumEntry.kt.after
T
2015-09-04 17:23:25 +03:00

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
}
}