mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
9 lines
124 B
D
9 lines
124 B
D
void main()
|
|
{
|
|
float m[4][4];
|
|
|
|
float* fp = &m[0][0];
|
|
for (int i=0; i<16; i++,fp++)
|
|
assert(*fp !<>= 0);
|
|
}
|