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