diff --git a/compiler/pexpr.pas b/compiler/pexpr.pas index 9642df5ea0..59b21ab81b 100644 --- a/compiler/pexpr.pas +++ b/compiler/pexpr.pas @@ -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 diff --git a/tests/test/tenum7.pp b/tests/test/tenum7.pp new file mode 100644 index 0000000000..e27088d9b1 --- /dev/null +++ b/tests/test/tenum7.pp @@ -0,0 +1,9 @@ +{ %FAIL } +program casedottest; +{$mode ObjFpc} +type + TShape=(shRectangle, shEllipse, shNone); +var + A: TShape.; +begin +end.