// PROBLEM: none fun test(foo: Int?, bar: Int): Int { var i = foo if (i == null) { return bar } return i }