mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
Fixing a bug where an empty postfix for enum was allowed
This commit is contained in:
parent
1ccc23fa70
commit
6618c0dbf7
@ -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
9
tests/test/tenum7.pp
Normal file
@ -0,0 +1,9 @@
|
||||
{ %FAIL }
|
||||
program casedottest;
|
||||
{$mode ObjFpc}
|
||||
type
|
||||
TShape=(shRectangle, shEllipse, shNone);
|
||||
var
|
||||
A: TShape.;
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user