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