fun foo(a: Int, s: String, i: Int = a + 1): Int { return i * a } fun test() { foo(1, "2") }