view run/t/typeof_11_C.d @ 1519:f71bd33bb278

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:22:49 +0000
parents 8cd17283ece1
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	David Friedman <dvdfrdmn@users.sf.net>
// @date@	2006-12-26
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=750
// @desc@	[Issue 750] New: Recursive typeof in function declaration crashes DMD

module dstress.run.t.typeof_11_C;

void test(typeof(&test) p) { }

int main() {
	test(&test);
	return 0;
}