-
## The problem
TemplateNotFound error thrown by Jinja2 when generating changelog in a subfolder. The directory structure is as follows:
```
- main_program
+-- templates
+-- main_program
…
deme3 updated
1 month ago
-
## Compiler version
`3.3.0-RC2`
## Minimized code
See [this repository](https://github.com/alexarchambault/dotty-macro-annotation-scaladoc-issue), that basically re-uses the test case from [h…
-
We are working on an experiment feature based on `Recheck`. During our testing on community projects, we have observed some unusual typing behaviors that we believe are caused by a bug in `Recheck`.
…
-
@romanowski came up with an idea how to reduce the burden of maintaining the community build.
Currently when some changes in the compiler break the tests of a project from the community build the dev…
-
when reporting a problem with overriding an abstract type with a concrete type, the involved type should be normalised so the error message becomes more explicit
```scala
trait Lists { // developed …
-
```scala
scala> import play.api.libs.json._ ; Option("a").getOrElse("b") : Json.JsValueWrapper
:13: error: type mismatch;
found : Object
required: play.api.libs.json.Json.JsValueWrapper
…
-
## Compiler version
3.0.1
## Minimized code
```Scala
package foo {
trait Bar:
inline def baz = Baz
private[foo] object Baz
}
```
## Output
After typer we generate the fo…
-
Hi all!
Just noticed Scala 3 is now officially on the scala-lang.org website - that's absolutely fantastic! I would like to share some of my findings from a Windows user's point of view, that could…
-
## Compiler version
3.1.0
## Minimized code
Union types of singletons can't be used as keys to a Map.
```Scala
type Row = 1 | 2 | 3
val board: Map[(Row, Char), String] = Map((1, 'a') -> …
-
## Compiler version
3.3.1
## Minimized code
```scala
enum User {
case _1, _2
def name: String = this match {
case _1 => "user1"
case _2 => "user2"
}
}
```
## Output…