mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-20 01:11:36 +02:00
18 lines
284 B
ObjectPascal
18 lines
284 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
uses
|
|
sysutils;
|
|
|
|
var
|
|
fn : string;
|
|
begin
|
|
fn:=FileSearch('tw1479.pp',';');
|
|
writeln('found: ',fn);
|
|
if fn<>'tw1479.pp' then
|
|
halt(1);
|
|
fn:=FileSearch('.\tw1479.pp',';');
|
|
writeln('found: ',fn);
|
|
if fn<>'.\tw1479.pp' then
|
|
halt(1);
|
|
end.
|