// WITH_RUNTIME fun maybeFoo(): String? { return "foo" } fun test(): String? { var foo = maybeFoo() val bar = foo ?: "hello" return foo }