Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/postfixPlusPlus.kt
T
2015-10-12 11:11:31 +02:00

7 lines
119 B
Kotlin
Vendored

// "Suppress 'USELESS_CAST' for statement " "true"
fun foo() {
val arr = IntArray(1)
arr[1 a<caret>s Int]++
}