mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
108 B
D
11 lines
108 B
D
module mini.norun_debug3;
|
|
|
|
void main()
|
|
{
|
|
int i = 42;
|
|
int* ip = &i;
|
|
|
|
int* fail;
|
|
*fail = 0;
|
|
}
|