fun foo(a: Int, i: Int = a + 1): String { val x = "-$i" val y = "x${i}y" val z = "x${a - 1}y" return "abc${i}def" }