uhe
fun b(vararg foo: Int) = println("vargarg") fun b(foo: Int) = println("simple") b() // prints "vararg"