view tangotests/debug1.d @ 313:a498b736a0bd trunk

[svn r334] Produce an error for zero-size types instead of segfaulting.
author ChristianK
date Sun, 29 Jun 2008 22:22:37 +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*, ...);