fun foo(a: Int): Int { val b = (a + 1) * 2 return a + b } fun test() { foo(1) }