Thread overview
[Issue 21445] Indexing a tuple in a static array type suffix fails to compile
Dec 02, 2020
Max Samukha
Dec 17, 2022
Iain Buclaw
December 02, 2020
https://issues.dlang.org/show_bug.cgi?id=21445

--- Comment #1 from Max Samukha <maxsamukha@gmail.com> ---
Independent test:

template alias_(a...) {
    alias alias_ = a;
}

struct S {
    int[] a;
    alias fields = alias_!(S.tupleof);
    alias fields this;
}

enum s = S(new int[1]);
int[s[0].length] a;

void main() {
}

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=21445

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
December 13
https://issues.dlang.org/show_bug.cgi?id=21445

--- Comment #2 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/19831

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--