view test/comma.d @ 2:1fb7ce03965b trunk

[svn r6] added some missing things
author lindquist
date Sat, 01 Sep 2007 22:24:46 +0200
parents c53b6e3fe49a
children
line wrap: on
line source

module comma;

void main()
{
    int i=0,j=0;
    for (; i<10; i++,j++)
    {
    }
    assert(i == 10);
    assert(j == 10);
}