dmytro.vasin (Dmytro Vasin)
- Login: dmytro.vasin
- Registered on: 11/26/2019
- Last sign in: 11/26/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/26/2019
-
06:50 AM Ruby Bug #16371 (Closed): Inconsistent usage of Double splat operator
- Here is an issue with a weird behavior of ruby double splat operator:
```
a = {a: 'a'}
b = {'b' => 'b'}
{x: 'x', **a}
#=> {:x=>"x", :a=>"a"}
{x: 'x', **b}
#=> TypeError (hash key "b" is not a Symbol)
```
When I do that ...