Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/call.kt
T
2015-10-12 11:11:23 +02:00

7 lines
128 B
Kotlin
Vendored

// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
fun foo() {
call("" as String?<caret>?)
}
fun call(s: String?) {}