annotate compile/c/const_43_C.d @ 1402:4e11e483dbb6

[Issue 1016] CTFE fails with recursive functions Don Clugston <clugdbug@yahoo.com.au> 2007-03-02 http://d.puremagic.com/issues/show_bug.cgi?id=1016
author thomask
date Thu, 08 Mar 2007 16:26:42 +0000
parents
children 9b84c2acf9e3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1402
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
1 // $HeadURL$
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
2 // $Date$
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
3 // $Author$
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
4
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
5 // @author@ Don Clugston <clugdbug@yahoo.com.au>
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
6 // @date@ 2007-03-02
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1016
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
8 // @desc@ [Issue 1016] CTFE fails with recursive functions
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
9
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
10 module dstress.comile.c.const_43_C;
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
11
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
12 bool bar(int i){
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
13 bool state = false;
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
14 if(i > 10){
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
15 state = true;
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
16 bool ignore = bar(i-1);
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
17 }
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
18 return state;
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
19 }
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
20
4e11e483dbb6 [Issue 1016] CTFE fails with recursive functions
thomask
parents:
diff changeset
21 static assert(bar(11));