Files
ldc/tangotests/debug9.d
Tomas Lindquist Olsen 53dedd765b [svn r271] Fixed debug info for implicit 'this' param.
Fixed debug info for arguments passed byval (ref and out params still missing).
2008-06-12 18:04:28 +02:00

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