fc70a65f99
#KT-3319 Fixed
6 lines
163 B
Kotlin
6 lines
163 B
Kotlin
// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
|
|
|
|
fun foo(a: Array<Int>) {
|
|
[suppress("UNNECESSARY_NOT_NULL_ASSERTION")]
|
|
a[1<caret>!!]
|
|
} |