nested call variable shadowing
Open
bug
invalid
- Dominant language
- Nim
- Stars
- 73
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
shadowing variable names doenst seem to work correctly.
neither with custom name:
```nim
echo:
@[@[1,2],@[3,4]].items |>
map[a](
a.items |> map[a](a+1).toSeq()).
toSeq()
```
nor with it:
```nim
echo:
@[@[1,2],@[3,4]].items |>
map(
it.items |> map(it+1).toSeq()).
toSeq()
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.