view test/fail1.d @ 318:8e570dbe4087 trunk

[svn r339] Add cleanup handling when within an action chain and some more documentation to the eh personality function.
author ChristianK
date Fri, 04 Jul 2008 09:00:49 +0200
parents d8dd47ef3973
children
line wrap: on
line source

module fail1;

void func()
{
    float* fp;
    float f = *fp;
}

void main()
{
    func();
}