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

9 lines
120 B
Kotlin
Vendored

fun outer(c: C?) {
if (c != null && c.x is String) {
<caret>null
}
}
class C {
val x: Any? = null
}