Files
ldc/tangotests/debug5.d
Tomas Lindquist Olsen 1e87ae15ef [svn r262] Fixed debug info for normal function parameters.
Fixed debug info for pointers to basic types.
2008-06-09 12:43:16 +02:00

16 lines
186 B
D

module tangotests.debug5;
void main()
{
int i = 32;
real r = 3.1415;
real* p = &r;
func(i,r,p);
}
void func(int i, real r, real* p)
{
int* fail;
*fail = 666;
}