Nelson Elhage
Results
2
issues of
Nelson Elhage
[This code](https://sorbet.run/#def%20f(x%2C%20y%3Dnil%2C%20z%3A%20false)%0Aend%0A%0Ah%20%3D%20%7B'foo'%20%3D%3E%201%7D%0Af(%22hi%22%2C%20h)%0A) is valid Ruby and runs fine in MRI: ```ruby def f(x, y=nil, z: false) end h = {'foo' => 1} f("hi", h) ``` However, sorbet erroneously assigns the...
In vanilla MRI, if you `require` a file via absolute path, which is also present on `$LOAD_PATH`, MRI internally caches it under its *relative* path, and will allow it to...