Scala 2 used the syntax entity_:*
to define vararg splices. However, Scala 3 has changed this syntax to entity*
. While both kinds of syntax are valid in
Scala 3 for now, this behavior is likely to change in the near future. Consider migrating to the newer syntax as soon as possible.
m(arr:_*)
m(arr*)