Aly Cerruti
Aly Cerruti
 I'm experiencing this with my own tool [squirrel-explorer](https://s5bug.github.io/squirrel-explorer/) where the inlay hints are calculated ahead of time when I render bytecode to text, _without_ updating the actual text in...
I've just run into ```scala def foo[F[_]](a: F[Int]): Unit = () foo[Null](null) ``` Error message ``` Found: Null Required: Null[Int] Note that implicit conversions were not tried because the result...
At first I thought the JNI could be a problem. However on a UTF-8 enabled machine,  the "non-Unicode" ANSI functions do work properly with Unicode characters: ```powershell PS >...
For posterity & archival, the `>: Null` bound is to prevent unhelpful inference of `Nothing` (i.e. in the case of `catchOnly { 123 }`). It ensures that a type argument...