view test/bug7.d @ 288:ba4e4298009a trunk

[svn r309] Remove the large dstress test result files from svn repository.
author ChristianK
date Sat, 21 Jun 2008 14:06:00 +0200
parents 4648206ca213
children
line wrap: on
line source

module bug7;

class love { }
void bug() {
    love[] child;
    child.length=1;
    assert(child[0] is null);
    child[0]=null;
    assert(child[0] is null);
}
void main()
{
    bug();
}