mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00

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 -
17 lines
183 B
ObjectPascal
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.
|
|
|