Reopens #496
To address wildcards mentioned in #496 (comment)
This has been promoted to error even in the current LTS.
Example:
//> using scala 3.3.6
//> using option -source:future
import scala.collection.mutable._
@main
def main = println(ListBuffer())
Running it with scala-cli
% scala-cli Underscore.scala
Compiling project (Scala 3.3.6, JVM (25))
[error] ./Underscore.scala:4:33
[error] `_` is no longer supported for a wildcard import; use `*` instead
[error] This construct can be rewritten automatically under -rewrite -source future-migration.
[error] import scala.collection.mutable._
[error] ^
Error compiling project (Scala 3.3.6, JVM (25))
Compilation failed