Files
ldc/tests/mini/norun_debug9.d
2008-07-28 03:04:28 +02:00

19 lines
185 B
D

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