www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - 0.92 crash

DMD 0.92 on XP

the following crashes the compiler after the error message is printed

"template instance Missing!(int[]) identifier 'Missing' is not
defined"

--------------------------

import std.c.stdio;


int main( char[][] argv ) {
	int[]	foo = new int[4];
	int[] bar;

	bar = Missing!(int[])( foo[1..3] );

	return 1;
}
Jun 10 2004