fc70a65f99
#KT-3319 Fixed
8 lines
163 B
Kotlin
8 lines
163 B
Kotlin
// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
|
|
|
|
fun foo() {
|
|
[suppress("REDUNDANT_NULLABLE")]
|
|
call("": String?<caret>?)
|
|
}
|
|
|
|
fun call(s: String?) {} |