mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
19 lines
262 B
ObjectPascal
19 lines
262 B
ObjectPascal
{ %norun }
|
|
{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android,haiku }
|
|
{ %needlibrary }
|
|
{$mode objfpc}
|
|
library tw36544a;
|
|
|
|
uses
|
|
uw36544;
|
|
|
|
procedure library_procedure;
|
|
begin
|
|
writeln('Not ok');
|
|
end;
|
|
|
|
exports library_procedure;
|
|
|
|
begin
|
|
end.
|