Files
ldc/tangotests/debug2.d
Tomas Lindquist Olsen 1e87ae15ef [svn r262] Fixed debug info for normal function parameters.
Fixed debug info for pointers to basic types.
2008-06-09 12:43:16 +02:00

16 lines
223 B
D

module tangotests.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);
}