fatal error: Internal error: 'Access violation' at 0x0046026

Started by drakoh, April 29, 2005, 01:53:32 AM

Previous topic - Next topic

drakoh

Hi !

here is a little piece of code that can fail the compiler:

01:typedef struct opcode {
02:   char* name;
03:   void (*func)();
04:} opcode;
05:
06:void nop() {
07:}
08:
09:opcode   opcodes[]={
10:/*000*/   {"nop",nop()}
11:};

this fail because it should be nop on line 10 and not nop()

hope it helps !

Pelle

Hello,

I get the same error here. Should be easy to track down and fix. Thanks for the report.

Pelle
/Pelle