changeset 1175:e7e487c06620

[Issue 371] New: ICE on mutual recursive typeof in function declarations Bruno Medeiros <brunodomedeiros+bugz@gmail.com> 2006-09-26 news:bug-371-3@http.d.puremagic.com/issues/
author thomask
date Fri, 06 Oct 2006 06:56:50 +0000
parents 70a6573ba83d
children cc05e5d01a04
files nocompile/t/typeof_13_A.d
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/t/typeof_13_A.d	Fri Oct 06 06:56:50 2006 +0000
@@ -0,0 +1,16 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bruno Medeiros <brunodomedeiros+bugz@gmail.com>
+// @date@	2006-09-26
+// @uri@	news:bug-371-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 371] New: ICE on mutual recursive typeof in function declarations
+
+module dstress.nocompile.t.typeof_13_A;
+
+void funcA( typeof(&funcB) p) {
+}
+
+void funcB( typeof(&funcA) p) {
+}