Matt Bovel

Results 94 comments of Matt Bovel

> But it works in nightly, right? My simplified example compiles with 3.2.0, but I am not sure for the original one. @He-Pin could please try with 3.2.0 and with...

Seems like the snippet compiles with 3.1.3 but not 3.2.0: ``` $ scala-cli compile --server=false --scala-version=3.1.3 refutable_pattern_tuple.scala $ scala-cli compile --server=false --scala-version=3.2.0 refutable_pattern_tuple.scala -- Warning: /Users/mbovel/scala-snippets/refutable_pattern_tuple.scala:7:9 ----- 7 | val...

Related: https://github.com/lampepfl/dotty/issues/15990.

Idea from @dwijnand: maybe the order of packages depend on the hash of the package name?

Minor: `h1` cut: Due to: ```css #content>div:first-child { overflow: hidden; } ``` And the `line-height` being set in `.body-medium` with an absolute `px` value that is too small for `h1`.

@SethTisue Yes, added a comment in https://github.com/lampepfl/dotty/issues/8257.

Possible improvement of the error message: ```diff diff --git a/compiler/src/dotty/tools/dotc/typer/Synthesizer.scala b/compiler/src/dotty/tools/dotc/typer/Synthesizer.scala index e3f5382ecad..1b84e243bbb 100644 --- a/compiler/src/dotty/tools/dotc/typer/Synthesizer.scala +++ b/compiler/src/dotty/tools/dotc/typer/Synthesizer.scala @@ -227,7 +227,7 @@ class Synthesizer(typer: Typer)(using @constructorOnly c: Context): case n:...

@hamzaremmal will work on this next semester.

How can I reproduce? I tried `sbt "scalac test.scala"` on `main`, `scala-cli compile -S 3.2.1-RC1-bin-20220712-7e20b81-NIGHTLY test.scala` and `scala-cli compile -S 3.1.1 test.scala` but all compile successfully. Do I need to...