The following code compiles in Scala 3.1.1 and with Scala 3.1.2, the compiler emits the following error - Type argument B does not conform to lower bound String
object Test{
val xs: Seq[String] = List("Apple", "Orange", "Pear")
export xs.*
}
Test.head