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