Comment #0 by snarwin+bugzilla — 2022-06-06T15:37:20Z
As of DMD 2.100.0, the following program fails to compile:
---
alias AliasSeq(Args...) = Args;
void test(alias a = AliasSeq!(0))() {}
alias _ = test!();
---
The error message is
---
bug.d(2): Error: tuple `Args` forward declaration
---
Comment #1 by robert.schadek — 2024-12-13T19:23:21Z