mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-22 14:29:25 +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 -
29 lines
347 B
ObjectPascal
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.
|