view tangotests/debug3.d @ 247:56199753e637 trunk

[svn r264] Fixed debug info for global variables.
author lindquist
date Mon, 09 Jun 2008 17:49:30 +0200
parents d61ce72c39ab
children
line wrap: on
line source

module tangotests.debug3;

void main()
{
    int i = 42;
    int* ip = &i;

    int* fail;
    *fail = 0;
}