fc70a65f99
#KT-3319 Fixed
8 lines
160 B
Kotlin
8 lines
160 B
Kotlin
// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
|
|
|
|
fun foo() {
|
|
[suppress("REDUNDANT_NULLABLE")]
|
|
when ("") {
|
|
is Any?<caret>? -> {}
|
|
}
|
|
} |