comparison compile/c/const_43_C.d @ 1403:9b84c2acf9e3

fixed typo
author thomask
date Thu, 08 Mar 2007 16:26:56 +0000
parents 4e11e483dbb6
children
comparison
equal deleted inserted replaced
1402:4e11e483dbb6 1403:9b84c2acf9e3
5 // @author@ Don Clugston <clugdbug@yahoo.com.au> 5 // @author@ Don Clugston <clugdbug@yahoo.com.au>
6 // @date@ 2007-03-02 6 // @date@ 2007-03-02
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1016 7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1016
8 // @desc@ [Issue 1016] CTFE fails with recursive functions 8 // @desc@ [Issue 1016] CTFE fails with recursive functions
9 9
10 module dstress.comile.c.const_43_C; 10 module dstress.compile.c.const_43_C;
11 11
12 bool bar(int i){ 12 bool bar(int i){
13 bool state = false; 13 bool state = false;
14 if(i > 10){ 14 if(i > 10){
15 state = true; 15 state = true;