changeset 1608:a261c96f7d64

Remove nocompile/m/mixin_25_B, see #5.
author Christian Kamm <kamm incasoftware de>
date Sat, 25 Apr 2009 09:16:37 +0200
parents 1bbcc6407d4b
children 3c803614a8fb
files nocompile/m/mixin_25_B.d
diffstat 1 files changed, 0 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/nocompile/m/mixin_25_B.d	Mon Apr 13 13:48:46 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Don Clugston <clugdbug@yahoo.com.au>
-// @date@	2006-10-04
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=398
-// @desc@	[Issue 398] New: No way to abort compilation in a doubly recursive mixin
-
-module dstress.nocompile.m.mixin_25_B;
-
-template rubbish(int w) {
-	static if (w<=0) {
-		int val = 2;
-	} else {
-		mixin rubbish!(w-1) left;
-		mixin rubbish!(w-1) right;
-	}
-}
-
-int main(){
-	mixin rubbish!(30);
-	return 0;
-}
-
-