mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 15:50:36 +02:00

units have changed, because these can influence the code of the current unit in case method signatures changed (mantis #13840) + manual test * fixed some recompilation crashes related to WPO info * clarified the unit_u_add_depend_to message git-svn-id: trunk@14503 -
28 lines
282 B
ObjectPascal
28 lines
282 B
ObjectPascal
{ %interactive }
|
|
|
|
{ see tw13480d.pp for test instructions }
|
|
|
|
{$mode objfpc}
|
|
|
|
unit tw13840c;
|
|
|
|
interface
|
|
|
|
uses
|
|
tw13840b;
|
|
|
|
type
|
|
tc = class(tb)
|
|
procedure mymy(var a);override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure tc.mymy(var a);
|
|
begin
|
|
writeln('tc.mymy');
|
|
inherited;
|
|
end;
|
|
|
|
end.
|