// IS_APPLICABLE: false fun foo(p: List): Int? { val v = p[0] if (v == null) bar() return v?.length } fun bar(){}