view tangotests/debug1.d @ 286:a3b7c19c866c trunk

[svn r307] Fixed: multidimensional new expressions now work. Eg.: auto ma = new int[][] (3,9);
author lindquist
date Sat, 21 Jun 2008 04:47:14 +0200
parents d61ce72c39ab
children
line wrap: on
line source

module tangotests.debug1;

void main()
{
    int* ptr;

    // all these should be inspectable
    int i = 1;
    int j = 2;
    long k = 3;
    float l = 4.521;
    ubyte m = 5;

    *ptr = 0;//cast(int)(i+j+k+l+m);
}

extern(C) int printf(char*, ...);