Aly Cerruti

Results 154 comments of Aly Cerruti

![Image](https://github.com/user-attachments/assets/1e16e39e-0c6e-40c1-a323-d4e2dc432e1b) 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, ![image](https://github.com/user-attachments/assets/45ab1c9a-9fb2-4ded-bacd-7b6f187daba8) 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...