comparison tangotests/debug4.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.debug4;
2
3 void main()
4 {
5 char c = 'c';
6 wchar wc = 'w';
7 dchar dc = 'd';
8
9 int* fail;
10 *fail = 32;
11 }