<div dir="ltr"><div dir="ltr"><div>It's not a bug. There's no support in FPC/Pascal for using constants with a defined type in other declarations.</div><div>Define your 
MYINTEGERCONST without a type, and it should work.<br><br></div><div>const<br>  MYINTEGERCONST = 5;<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jun 12, 2019 at 10:30 PM Simon Ameis <<a href="mailto:SAmeis.fpc@web.de">SAmeis.fpc@web.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello,<br>
<br>
I'm just porting some C code to pascal. This code contains constant<br>
structure definitions which use other constants of simple types.<br>
<br>
However FPC reports "Error: Illegal expression" when using a constant<br>
within an constant record definition.<br>
<br>
program Project1;<br>
<br>
type<br>
  TMyRecord = record<br>
    x: Integer;<br>
  end;<br>
<br>
const                  <br>
  MYRECORDCONST2: TMyRecord = (x: 5); //< compiles fine<br>
  MYINTEGERCONST: Integer = 5;        //< defining integer const<br>
  MYRECORDCONST1: TMyRecord = (x: MYINTEGERCONST); //< using constant is<br>
no possible<br>
begin<br>
end.<br>
<br>
Is this intended or should I fill in a bug report? If it's intendet, I'm<br>
wondering why?<br>
<br>
Regards<br>
Simon Ameis<br>
<br>
_______________________________________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org" target="_blank">fpc-pascal@lists.freepascal.org</a><br>
<a href="https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal" rel="noreferrer" target="_blank">https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal</a><br>
</blockquote></div></div>