mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-22 03:12:06 +01:00
14 lines
130 B
ObjectPascal
14 lines
130 B
ObjectPascal
{ %TARGET=win32 }
|
|
{ %NORUN }
|
|
library test;
|
|
|
|
procedure exporttest;export;
|
|
|
|
begin
|
|
end;
|
|
|
|
exports exporttest;
|
|
|
|
begin
|
|
end.
|