comparison tangotests/debug3.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.debug3;
2
3 void main()
4 {
5 int i = 42;
6 int* ip = &i;
7
8 int* fail;
9 *fail = 0;
10 }