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

7 lines
147 B
Plaintext
Vendored

// "Suppress 'REDUNDANT_NULLABLE' for fun local" "true"
fun foo() {
@Suppress("REDUNDANT_NULLABLE")
fun local(): String?<caret>? = null
}