OK, I think it should be fine. What I did
- downloaded the latest sbt to `/usr/local/sbt`, `/usr/local/bin/sbt` is a symlink to that (it used to be sbt-extras)
- downloaded jdk 8 to `/usr/l...
Here's a self-contained example that shows the incorrect behavior:
```scala
import scala.collection.mutable
import scala.collection.immutable.SortedSet
import scala.util.Random
class Bug(m...
I'm taking another look.
`Namer.assignTypeToTree` is used to infer a DefDef/ValDef type. It calls `Typer.computeType`, which calls `packedType`.
Example: `def t = new C { def f = 1 }`
- ...
Starting point is https://github.com/scala/scala-dev/issues/405. There are many links from there to PRs, a repo with tests / experiments, eg a script that compiles files in random orders or recompi...
I probably didn't get what you mean then, https://github.com/scala/scala/pull/10937/commits/188f445436ff55ace8b685dd4399e1a117b2d555#diff-b64326ffeb79c30e7645bbfd8c8071cd453e417debf25dfb870af8323eb...
Thank you! I pushed a slightly different, simpler fix, please take a look.
The problem is that `EmptyFun: () => LazyList[A]` has to return a `LazyList`, so it cannot be an arbitrary marker objec...
it's a completion test
```
[metals] [error] ==> X tests.pc.CompletionArgSuite.contructor-param_2.13.16-bin-06d9be6 0.047s munit.ComparisonFailException: tests/cross/src/test/scala/tests/pc/Com...
... sometimes the simple ideas are not that simple.
https://github.com/scala/scala/compare/2.13.x...lrytz:scala:annot-overload?expand=1 adds the constructor symbol to AnnotationInfo, but
- we...