# HG changeset patch # User Christian Kamm # Date 1240643797 -7200 # Node ID a261c96f7d64846be8a20c708f648284bf443d12 # Parent 1bbcc6407d4bd688abf3b88cb7ac0544d8e359ef Remove nocompile/m/mixin_25_B, see #5. diff -r 1bbcc6407d4b -r a261c96f7d64 nocompile/m/mixin_25_B.d --- 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 -// @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; -} - -