Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/kt1270.kt
T
Andrey Breslav 0cbbb6a0db Test data fixed
2014-10-13 15:37:47 +04:00

14 lines
277 B
Kotlin

// !DIAGNOSTICS: -UNUSED_VARIABLE
//KT-1270 Poor highlighting when trying to dereference a nullable reference
package kt1270
fun foo() {
val sc = java.util.HashMap<String, SomeClass>()[""]
val value = sc.value
}
private class SomeClass() {
val value : Int = 5
}