fpc/tests/webtbf/tw26456.pp
svenbarth f1bfb398e4 Fix for Mantis #26456.
symtable.pas, searchsym_in_helper:
  * check whether extendeddef is assigned as this function is called when parsing the extended type and it was not found (the second pass is to display a more accurate error message and was added some weeks ago)

+ added test

git-svn-id: trunk@28242 -
2014-07-20 13:40:01 +00:00

17 lines
183 B
ObjectPascal

{ %FAIL }
program tw26456;
{$modeswitch advancedrecords}
type
THelper = record helper for xxxxxxx
procedure test;
end;
procedure THelper.test;
begin
end;
begin
end.