Files
kotlin-fork/idea/testData/quickfix/suppress/availability/afterLocalFunSuppressForOuter.kt
T
2015-05-07 22:36:16 +03:00

7 lines
141 B
Kotlin

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