blob: 083a677858285db229abccd077f4c9aa8daa0959 [file] [log] [blame]
fun foo(a: Int, s: String, b: Int, i: Int = a + b): Int {
return i * 2
}
fun test() {
foo(1, "2", 3)
}