ragnar
ragnar
Note, I had a similar issue involving https://ben.kirw.in/decline/ and cats.Applicative.F. I do not have a minimization, but for me the issue only occurred on native image 22.1.0 (not on 22.0.0.2)...
Hi, as I ran into the same problem, I found a workaround (that does not quite address your use case with inkscape) Convert the font as you did (well, I...
Maybe as a meta comment; the largest additions in this PR are just translations of the Scala 2 macros. For the most part, the Scala 2 macros are used to...
Note that all that jitpack requires is that the process outputs jars to `~/.m2/repository` and allows to specify custom commands, thus, adding a `jitpack.yml` with the following might work (maybe...
You can already run jar files with `run`, you just kinda still need to pass a `.scala` file or the tool will complain, that is: ``` ❯ echo "" |...
Basically it does not seem to infer sub parts of a union. Smaller example: ``` scala> def test[A](v: A | Unit): A | Unit = v scala> test(5: Int |...
The closest I know is that you can do e.g., `cs resolve --tree | head -n1` which will print the currently selected version of a dependency. Note however, that this...
This bug report is about the fact that Scala 3 supports shebang lines in source files (in the sense that they are just ignored by the compiler), but scalafmt does...
scala-cli since at least version 0.1.20 outputs: ``` ❯ scala-cli run test.scala [error] ./test.scala:1:15: unclosed string literal [error] //> using lib " [error] ^ ``` which seems to be good...