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(); }