comparison test/staticarrays.d @ 339:385a18242485 trunk

[svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too! Fixed issues with slice initialization (!!!) of multidimensional static arrays. Attempt to fix issue with referencing nested 'this' pointers introduced in DMD 1.033 merge.
author lindquist
date Sun, 13 Jul 2008 01:29:49 +0200
parents d9d5d59873d8
children
comparison
equal deleted inserted replaced
338:0c90d816394f 339:385a18242485
63 classes[0].print(); 63 classes[0].print();
64 delete classes[0]; 64 delete classes[0];
65 } 65 }
66 } 66 }
67 67
68 void vals()
69 {
70 S[5] structs;
71 }
72
68 void main() 73 void main()
69 { 74 {
70 numbers(); 75 numbers();
71 refs(); 76 refs();
77 vals();
72 } 78 }