Files
ldc/test/fail1.d
Tomas Lindquist Olsen d58ce84169 [svn r86] Changed the way arguments are given storage. It is now detected if they will need it during semantic passes.
Initial support for debug information. Very limited, but MUCH better than nothing :)
2007-11-02 01:17:26 +01:00

13 lines
94 B
D

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