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

9 lines
109 B
Kotlin
Vendored

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