fpc/tests/webtbs/tw13840/tw13840c.pp
Jonas Maebe 1743c6f1a8 * also recompile a unit if class/object definitions in indirectly used
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 -
2009-12-30 14:03:31 +00:00

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.