comparison tangotests/debug9.d @ 254:8187884566fa trunk

[svn r271] Fixed debug info for implicit 'this' param. Fixed debug info for arguments passed byval (ref and out params still missing).
author lindquist
date Thu, 12 Jun 2008 18:04:28 +0200
parents
children
comparison
equal deleted inserted replaced
253:c6f25edd6ef3 254:8187884566fa
1 module tangotests.debug9;
2
3 struct Foo
4 {
5 int a,b,c;
6
7 void func()
8 {
9 int* fail;
10 *fail = 0;
11 }
12 }
13
14 void main()
15 {
16 Foo foo = Foo(1,10,73);
17 foo.func();
18 }