Closed
Description
On 3.0.0-M2:
Minimized code
object Exporter {
object Exportee {
inline def foo(args: String*): String = args.mkString(" ")
}
export Exportee._
}
import Exporter._
foo("a", "b", "c")
Output
1 |foo("a", "b", "c")
| ^^^^^^^^^^^^^
| Found: (args$proxy1 : Seq[String])
| Required: String
Expectation
val res0: String = a b c