mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:27:59 +02:00
21 lines
520 B
ObjectPascal
21 lines
520 B
ObjectPascal
{ %INTERACTIVE }
|
|
|
|
{ Note: to test this, first compile this program, then change something inside
|
|
unit uw26760 and make sure that it's recompiled (e.g. either by checking
|
|
the compiler messages or by introducing a compile error).
|
|
Make sure you use the -FUlib compiler option so that the PPU is
|
|
created into a separate directory (otherwise the PP file is found next
|
|
to the PPU file. }
|
|
|
|
program tw26760;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
uw26760 in 'uw26760/uw26760';
|
|
|
|
begin
|
|
Test;
|
|
end.
|
|
|