Open
Description
Scala 3.7.0-RC4
This code:
def foo()(implicit x: Int): String = ???
def main(): Unit = {
foo()(42)
foo()(42)
foo()(42)
}
Generates warning:
Implicit parameters should be provided with a `using` clause.
This code can be rewritten automatically under -rewrite -source 3.7-migration.
To disable the warning, please use the following option:
"-Wconf:msg=Implicit parameters should be provided with a `using` clause:s"

It would be nice if the compiler could provide the compiler fix for the warning.