8 lines
142 B
Plaintext
Vendored
8 lines
142 B
Plaintext
Vendored
// "Suppress 'USELESS_CAST' for statement " "true"
|
|
|
|
fun foo() {
|
|
val arr = IntArray(1)
|
|
@Suppress("USELESS_CAST")
|
|
arr[1 as Int]++
|
|
}
|