Hi,
I'd like to define a method accepting varargs, so that I get the types with which it was called even in the case of nulls.
def foo(args: Any*) = ....
val s: String = null
foo(1, s) // i'd like to be able to tell in foo that args(0) is Int, args(1) is String