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