Fixing a bug where an empty postfix for enum was allowed

This commit is contained in:
Frederic Kehrein 2024-10-30 20:01:39 +01:00 committed by FPK
parent 1ccc23fa70
commit 6618c0dbf7
2 changed files with 16 additions and 1 deletions

View File

@ -2608,7 +2608,13 @@ implementation
p1:=cerrornode.create;
consume(_ID);
end;
end;
end
else
begin
p1.destroy;
p1:=cerrornode.create;
consume(_ID);
end
end;
arraydef:
begin

9
tests/test/tenum7.pp Normal file
View File

@ -0,0 +1,9 @@
{ %FAIL }
program casedottest;
{$mode ObjFpc}
type
TShape=(shRectangle, shEllipse, shNone);
var
A: TShape.;
begin
end.