digitalmars.D.bugs - internal error
- Bent Rasmussen (12/12) Jun 20 2004 DMD 0.92 (XP/SP) chokes on this
- Walter (3/15) Jun 20 2004 It should work. I'll add it to the bug list.
DMD 0.92 (XP/SP) chokes on this
struct test {
}
void rec(int n, test t) {
if (n > 0) {
rec(n-1,t);
}
}
"Internal error: ..\ztc\blockopt.c 1941"
If "test t" becomes "int t", there is no problem.
Is there a problem with recursive application of struct parameters?
Or have I missed something obvious?
Jun 20 2004
It should work. I'll add it to the bug list.
"Bent Rasmussen" <exo bent-rasmussen.info> wrote in message
news:cb550t$1pon$1 digitaldaemon.com...
DMD 0.92 (XP/SP) chokes on this
struct test {
}
void rec(int n, test t) {
if (n > 0) {
rec(n-1,t);
}
}
"Internal error: ..\ztc\blockopt.c 1941"
If "test t" becomes "int t", there is no problem.
Is there a problem with recursive application of struct parameters?
Or have I missed something obvious?
Jun 20 2004








"Walter" <newshound digitalmars.com>