Re: [fpc-devel]Compiler runtime error when using WideString character constant

2003-11-08 Thread Florian Klaempfl
David Butler wrote: Hi I am using FreePascal 1.9.0[2003/11/05]. For the following code, the compiler crashes with Runtime error 216 at 0x004467CA. type RR = record RA : WideString; end; const Z : RR = (RA: 'B'); The compiler does not crash if the 'B' is changed to a string of more than

[fpc-devel]Compiler runtime error when using WideString character constant

2003-11-07 Thread David Butler
Hi I am using FreePascal 1.9.0[2003/11/05]. For the following code, the compiler crashes with Runtime error 216 at 0x004467CA. type RR = record RA : WideString; end; const Z : RR = (RA: 'B'); The compiler does not crash if the 'B' is changed to a string of more than one character,