fpc/tests/webtbs/tw16949a.pp

21 lines
239 B
ObjectPascal

{ %norun }
{ %needlibrary }
{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos}
library tw16949a;
{$mode objfpc}{$H+}
function foo: LongInt; cdecl;
var
x: LongInt = 12345;
begin
Result := x;
end;
exports
foo;
begin
end.