Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/ea40964.kt
T
Alexander Udalov b23601eefe EA-40964
Don't access elements of an empty array
2012-11-28 17:41:35 +04:00

9 lines
151 B
Kotlin

package checkFiles
import java.util.HashMap
fun main(args: Array<String>) {
val hashMap = HashMap<String, String>()
hashMap[<!SYNTAX!><!>]
}