mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
Fixing bug where in const init no typecheck for symbol was performed
This commit is contained in:
parent
3e7d58bce7
commit
a188322e76
@ -1682,7 +1682,7 @@ function get_next_varsym(def: tabstractrecorddef; const SymList:TFPHashObjectLis
|
||||
consume(_ID);
|
||||
consume(_COLON);
|
||||
recsym := tsym(def.symtable.Find(s));
|
||||
if not assigned(recsym) then
|
||||
if not assigned(recsym) or (recsym.typ<>fieldvarsym) then
|
||||
begin
|
||||
Message1(sym_e_illegal_field,sorg);
|
||||
error := true;
|
||||
|
16
tests/test/trecinit1.pp
Normal file
16
tests/test/trecinit1.pp
Normal file
@ -0,0 +1,16 @@
|
||||
{ %FAIL }
|
||||
program trecinit1;
|
||||
|
||||
{$mode delphi}
|
||||
{$ModeSwitch advancedrecords}
|
||||
|
||||
type
|
||||
TTestRec = record
|
||||
A: Integer;
|
||||
property B: Integer read A;
|
||||
end;
|
||||
|
||||
const
|
||||
rec: TTestRec = (A:42; B:32);
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user