We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
They exist but don't do anything currently, as a workaround you can do at the top of a file:
import Predef.{println => _}
Explicitly importing something from Predef disable the automatic import of Predef, and importing a method as _ means that it isn't accessible.
_