comparison tangotests/debug5.d @ 245:d61ce72c39ab trunk

[svn r262] Fixed debug info for normal function parameters. Fixed debug info for pointers to basic types.
author lindquist
date Mon, 09 Jun 2008 12:43:16 +0200
parents
children
comparison
equal deleted inserted replaced
244:a95056b3c996 245:d61ce72c39ab
1 module tangotests.debug5;
2
3 void main()
4 {
5 int i = 32;
6 real r = 3.1415;
7 real* p = &r;
8 func(i,r,p);
9 }
10
11 void func(int i, real r, real* p)
12 {
13 int* fail;
14 *fail = 666;
15 }