sergeim (Sergei Matheson)
- Login: sergeim
- Registered on: 01/11/2016
- Last sign in: 01/16/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/11/2016
-
06:10 AM Ruby Bug #11976 (Closed): Assigning to nil as a hash short-circuits without error.
- When assigning to nil as a hash, the RHS gets short-circuited, and the hash assignment on nil returns nil.
To reproduce:
~~~ruby
nil[:some_key] = undefined_method
# Expected: NameError: undefined local variable or method `undefined...