fpc/tests/webtbs/tw13840/tw13840d.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

29 lines
347 B
ObjectPascal

{ %interactive }
{ perform the following steps:
rm tw13840d.ppu
fpc tw13840d
touch tw13840a.pp
fpc tw13840b -dchanged
fpc tw13840d -dchanged
In the last step, unit c also has to be recompiled. If it isn't, a linker
error will occur.
}
{$mode objfpc}
uses
tw13840c;
var
c: tc;
begin
c:=tc.create;
c.test;
c.mymy(c);
c.free;
end.