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