https://issues.dlang.org/show_bug.cgi?id=13864
--- Comment #4 from Vlad Levenfeld <[email protected]> --- its not writeln, this works as well: auto f (T...)(T) { } void main (string[] args) { int[] x = [2,3,4]; f (x[0]); auto a = x[0.tuple.expand]; // range violation if commented out f (x[0.tuple.expand]); } --
