view tests/mini/norun_debug2.d @ 883:b52d5de7783f

GC defines and linkage changes.
author Christian Kamm <kamm incasoftware de>
date Thu, 08 Jan 2009 18:20:02 +0100
parents 24ea9bf5f8b7
children 925779c19395
line wrap: on
line source

module mini.norun_debug2;

import tango.stdc.stdlib : rand;

void main()
{
    size_t iter;
    while (iter < 25)
    {
        if (rand() % 20 == 10)
            *cast(int*)null = 0;
        ++iter;
    }
    assert(0);
}