mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
fixes #24378 ```nim type Win = typeof(`body`) doAssert not supportsCopyMem((int, Win)) ``` `semAfterMacroCall` doesn't skip the children aliases types in the tuple typedesc construction while the normal program seem to skip the aliases types somewhere `(int, Win)` is kept as `(int, alias string)` instead of expected `(int, string)`