scala3 icon indicating copy to clipboard operation
scala3 copied to clipboard

The Scala 3 compiler, also known as Dotty.

Results 959 scala3 issues
Sort by recently updated
recently updated
newest added

https://github.com/scalameta/metals/pull/6074 https://github.com/scalameta/metals/pull/6129

For now, when we have a nightly build failure, the bot open an issue with a single link to the GitHub action failure. Since those kind of issues are a...

itype:enhancement
area:infrastructure

Fixes #5755, #19704 Tested locally and the difference in behaviour was observed. I'm not sure how to test it with the CI, if anybody has an idea, please let me...

See https://github.com/lampepfl/dotty/actions/runs/8027770056

itype:bug
prio:blocker
area:community build

close #16610 Before this commit, the compiler ignored Scaladoc comment on multiple enum cases without warning. This is partly expected because the case to which the doc is attached is...

## Compiler version 3.4.0 ## Minimized code https://scastie.scala-lang.org/gxYxc2GGSL2Kakv3xDQyKA ```Scala final abstract class ForcedRecompilationToken[T] object ForcedRecompilationToken { implicit def default: ForcedRecompilationToken["abc"] = null } object x { abstract class GoodNoParens[T](implicit ev:...

itype:enhancement
backlog

- Add `-coverage-exclude-packages` option that excludes packages and classes from generating coverage - Add `-coverage-exclude-files` option that excludes files from generating coverage

## Compiler version 3.3.0 ## Minimized code A simple example of a code that contains behavior unexpected by the user, caused by implementation detail of boundary/break: ```Scala //> using scala...

itype:bug
itype:enhancement
area:transform

To find Scala companion mudule from Java, we should strip module suffix `$`. This ~provides workaround~ fixes #17255 as well as forward-port https://github.com/scala/scala/pull/10644. ~, but it requires some refinment to...