8 lines
157 B
Plaintext
Vendored
8 lines
157 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
|
|
|
|
fun foo() {
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
call("" as String??)
|
|
}
|
|
|
|
fun call(s: String?) {} |