Files
ldc/tests/mini/debug9.d

19 lines
185 B
D

module tangotests.debug9;
struct Foo
{
int a,b,c;
void func()
{
int* fail;
*fail = 0;
}
}
void main()
{
Foo foo = Foo(1,10,73);
foo.func();
}