mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
16 lines
186 B
D
16 lines
186 B
D
module tangotests.debug5;
|
|
|
|
void main()
|
|
{
|
|
int i = 32;
|
|
real r = 3.1415;
|
|
real* p = &r;
|
|
func(i,r,p);
|
|
}
|
|
|
|
void func(int i, real r, real* p)
|
|
{
|
|
int* fail;
|
|
*fail = 666;
|
|
}
|