ParadoxV5
ParadoxV5
Just encountered a use case for `[instance]` and, well, it doesn’t just __also__ affect `instance`, it crashes and deadlocks :skull:. ```rbs interface _M[T < BasicObject] end class M include _M[instance]...
* Fixed by #1165 * Confirmed with Steep 1.7.1
Method args are “`in`” and therefore contravariant, which means not valid as args that expect a subclass. That said, Steep should report “Cannot pass a value of type `top`/`void` as...
Should `boolish` be `untyped` instead? ```rbs def my_method: (boolish) -> boolish # in = contravariant ^ ^ out = covariant ```
* Resolved by f0f17b9
> merged my modifications... release soon * Closed by f0f17b9
> (Mac Ruby 2.7 CI failure) Intriguing. `CC` and co. should be set from the `rbconfig` in practice. Considering this was never an issue in my previous `Makefile` PRs, does...
> Before, we always set `CC` to `cc`, so it couldn't be overridden by env vars. Like with `ARFLAGS` in the PR, I expect the original `CC := cc` to...
> Like with `ARFLAGS` in the PR, I expect the original `CC := cc` to be overridable by env vars. Oof, I had it mixed up. It’s only overridable with...