view test/fail2.d @ 238:346cba22f4b8 trunk

[svn r255] added dstress results for [254]
author ChristianK
date Sun, 08 Jun 2008 21:23:09 +0200
parents 61615fa85940
children
line wrap: on
line source

module fail2;

void a()
{
    b();
}

void b()
{
    c();
}

void c()
{
    d();
}

void d()
{
    int* ip;
    int i = *ip;
}

void main()
{
    a();
}