* better error recovery, resolves #36377

git-svn-id: trunk@43612 -
This commit is contained in:
florian 2019-11-29 22:13:17 +00:00
parent 4525edd9f7
commit d8f1aacd78
3 changed files with 23 additions and 1 deletions

1
.gitattributes vendored
View File

@ -16087,6 +16087,7 @@ tests/webtbf/tw36114.pp svneol=native#text/pascal
tests/webtbf/tw36223.pp svneol=native#text/pascal
tests/webtbf/tw3626.pp svneol=native#text/plain
tests/webtbf/tw3631.pp svneol=native#text/plain
tests/webtbf/tw36377.pp svneol=native#text/pascal
tests/webtbf/tw3643.pp svneol=native#text/plain
tests/webtbf/tw3644.pp svneol=native#text/plain
tests/webtbf/tw3662.pp svneol=native#text/plain

View File

@ -538,7 +538,13 @@ implementation
dospecialize:=false;
end;
end;
if dospecialize then
{ recover from error? }
if def.typ=errordef then
begin
while (token<>_SEMICOLON) and (token<>_RKLAMMER) do
consume(token);
end
else if dospecialize then
begin
if def.typ=forwarddef then
def:=ttypesym(srsym).typedef;

15
tests/webtbf/tw36377.pp Normal file
View File

@ -0,0 +1,15 @@
{ %fail }
{$mode objfpc}
program test;
uses
FGL;
// Type identifier expected
// Internal error 2019112401
generic function CopyList<T>(source: specialize FGL.TFPGObjectList<T>): specialize FGL.TFPGObjectList<T>;
begin
end;
begin
end.