// PROBLEM: none fun foo(p: String?): String? { return if (p != null) p.bar() else "a" } fun String.bar(): String? = null