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

9 lines
114 B
Kotlin
Vendored

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