https://issues.dlang.org/show_bug.cgi?id=21445
--- Comment #1 from Max Samukha <[email protected]> --- 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() { } --
