mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
19 lines
185 B
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();
|
|
}
|