--
You received this message because you are subscribed to the Google Groups "scala-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-user+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
That's because List *expects* multiple arguments. Auto-tupling means that when you call f(a, b...) where f takes only one argument, the compiler inserts an extra set of parentheses for you, so you end up passing f one tuple-valued argument, rather than getting a compiler error for wrong number of arguments.