mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
16 lines
220 B
D
16 lines
220 B
D
module mini.norun_debug2;
|
|
|
|
import tango.stdc.stdlib : rand;
|
|
|
|
void main()
|
|
{
|
|
size_t iter;
|
|
while (iter < 25)
|
|
{
|
|
if (rand() % 20 == 10)
|
|
*cast(int*)1 = 0;
|
|
++iter;
|
|
}
|
|
assert(0);
|
|
}
|