view tests/mini/arrayinit1.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
parents 489f6f39ca09
children
line wrap: on
line source

void main()
{
    float m[4][4];

    float* fp = &m[0][0];
    for (int i=0; i<16; i++,fp++)
        assert(*fp !<>= 0);
}