8 lines
159 B
Plaintext
Vendored
8 lines
159 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
|
|
|
|
fun foo() {
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
when ("") {
|
|
is Any?<caret>? -> {}
|
|
}
|
|
} |