mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-20 01:38:20 +02:00
14 lines
136 B
ObjectPascal
14 lines
136 B
ObjectPascal
{ %TARGET=win32,wince }
|
|
{ %NORUN }
|
|
library test;
|
|
|
|
procedure exporttest;export;
|
|
|
|
begin
|
|
end;
|
|
|
|
exports exporttest;
|
|
|
|
begin
|
|
end.
|