http://d.puremagic.com/issues/show_bug.cgi?id=10444


[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|enhancement                 |normal


--- Comment #1 from [email protected] 2013-06-23 15:06:28 PDT ---
It's kind of needed to print arrays of simd vectors:


import std.stdio: writeln;
import core.simd: int4;
void main() {
    int4[] v = [[1, 2, 3, 4], [5, 6, 7, 8]];
    writeln(v[0].array, " ", v[1].array); // OK
    writeln(v); // error
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to