8 lines
183 B
Plaintext
8 lines
183 B
Plaintext
// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
|
|
|
|
fun foo() {
|
|
@suppress("UNNECESSARY_NOT_NULL_ASSERTION")
|
|
when (1) {
|
|
in 1<caret>!!..2 -> {}
|
|
}
|
|
} |