blob: ca1b6604dae4e686b436824c91ea055b650d827b [file] [log] [blame]
fun C.outer(a: Any?) {
if (this.x is String) {
<caret>null
}
}
class C {
val x: Any? = null
}