I am not sure if this is an enhancement request, but I'd like to initialized the whole module-level 'a' to a given value: double[2][2] a = 0.0; // error void main() { double[2][2] b = 0.0; // OK }
(In reply to comment #0) > double[2][2] a = 0.0; // error I think it's actually just a bug that it's not accepted. Workaround: double[2][2] a = [0.0];
*** This issue has been marked as a duplicate of issue 8979 ***