// PROBLEM: none fun maybeFoo(): String? { return "foo" } fun main(args: Array) { if (maybeFoo() == null) maybeFoo() else "bar" }