mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:38:19 +02:00
Fixing trying to consume ID for anonymous switch field
This commit is contained in:
parent
f1317e893d
commit
ba55932929
@ -1982,16 +1982,19 @@ implementation
|
||||
|
||||
{ including a field declaration? }
|
||||
fieldvs:=nil;
|
||||
sorg:=orgpattern;
|
||||
hs:=pattern;
|
||||
searchsym(hs,srsym,srsymtable);
|
||||
if not(assigned(srsym) and (srsym.typ in [typesym,unitsym])) then
|
||||
if token=_ID then
|
||||
begin
|
||||
consume(_ID);
|
||||
consume(_COLON);
|
||||
fieldvs:=cfieldvarsym.create(sorg,vs_value,generrordef,[]);
|
||||
variantdesc^^.variantselector:=fieldvs;
|
||||
symtablestack.top.insertsym(fieldvs);
|
||||
sorg:=orgpattern;
|
||||
hs:=pattern;
|
||||
searchsym(hs,srsym,srsymtable);
|
||||
if not(assigned(srsym) and (srsym.typ in [typesym,unitsym])) then
|
||||
begin
|
||||
consume(_ID);
|
||||
consume(_COLON);
|
||||
fieldvs:=cfieldvarsym.create(sorg,vs_value,generrordef,[]);
|
||||
variantdesc^^.variantselector:=fieldvs;
|
||||
symtablestack.top.insertsym(fieldvs);
|
||||
end;
|
||||
end;
|
||||
read_anon_type(casetype,true);
|
||||
block_type:=bt_var;
|
||||
|
19
tests/test/tvrec1.pp
Normal file
19
tests/test/tvrec1.pp
Normal file
@ -0,0 +1,19 @@
|
||||
program tvrec1;
|
||||
|
||||
type
|
||||
TTestRec = record
|
||||
case (A, B) of
|
||||
A: (I: Integer);
|
||||
B: (D: Double);
|
||||
end;
|
||||
|
||||
var
|
||||
rec: TTestRec;
|
||||
begin
|
||||
if @rec.I=@rec.D then
|
||||
begin
|
||||
WriteLn('ok');
|
||||
halt(0);
|
||||
end;
|
||||
halt(1);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user