view test/fail2.d @ 288:ba4e4298009a trunk

[svn r309] Remove the large dstress test result files from svn repository.
author ChristianK
date Sat, 21 Jun 2008 14:06:00 +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();
}