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