We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let t=s.mapIt(it)
Error: redefinition of 't'
#[ BUG: /Users/timothee/git_clone/nim/timn/bugs/stdlib/t01_mapIt_redefinition_of_t.nim(6, 1) template/generic instantiation from here /Users/timothee/git_clone/nim/timn/bugs/stdlib/t01_mapIt_redefinition_of_t.nim(9, 9) Error: redefinition of 't' ]# import sequtils when defined(case1): proc test() = # BUG let t = [1,2].mapIt(it) test()
@judofyr LemonBoy is there a better fix than changing t to something rare in implementation of mapIt?
t
mapIt
The text was updated successfully, but these errors were encountered:
Error: redefinition of
fixes nim-lang#8577, nim-lang#8580, other bug fixes
263a5c5
fixes #8577, fixes #8580, other bug fixes (#8584)
ed9fd2b
Successfully merging a pull request may close this issue.
@judofyr LemonBoy is there a better fix than changing
t
to something rare in implementation ofmapIt
?The text was updated successfully, but these errors were encountered: