mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-11 05:22:53 +02:00
19 lines
186 B
ObjectPascal
19 lines
186 B
ObjectPascal
library bug;
|
|
|
|
const
|
|
publicname='TestName';
|
|
publicindex = 1234;
|
|
|
|
procedure Test;export;
|
|
|
|
begin
|
|
end;
|
|
|
|
exports
|
|
Test name publicname;
|
|
exports
|
|
Test index publicindex;
|
|
|
|
begin
|
|
end.
|