view test/fail1.d @ 273:25fa34e899e9 trunk

[svn r294] Fixed some more of the old tests.
author lindquist
date Wed, 18 Jun 2008 23:29:14 +0200
parents d8dd47ef3973
children
line wrap: on
line source

module fail1;

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

void main()
{
    func();
}