Files
ldc/tests/mini/debug3.d

11 lines
108 B
D

module tangotests.debug3;
void main()
{
int i = 42;
int* ip = &i;
int* fail;
*fail = 0;
}