Files
kotlin/idea/testData/dataFlowValueRendering/packageProperty.kt
2013-11-13 14:36:34 +04:00

9 lines
97 B
Kotlin
Vendored

package foo
val a: Any? = null
fun outer() {
if (a is String) {
<caret>null
}
}