annotate tests/mini/arrayinit1.d @ 838:94ba810ea2b0

Fixed problem with nested function inside static nested function. see mini/compile_nested2.d. fixes #143 .
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 14:57:01 +0100
parents 489f6f39ca09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
826
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
1 void main()
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
2 {
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
3 float m[4][4];
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
4
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
5 float* fp = &m[0][0];
827
489f6f39ca09 ... and fixed that test case :P ...
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 826
diff changeset
6 for (int i=0; i<16; i++,fp++)
826
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
7 assert(*fp !<>= 0);
ea4c6adf8b00 Added testcase for fix in rev [825]
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents:
diff changeset
8 }