mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
22 lines
319 B
ObjectPascal
22 lines
319 B
ObjectPascal
{ %norun }
|
|
{ %needlibrary }
|
|
{ %skiptarget=go32v2 }
|
|
{ %opt=-Cg }
|
|
{ %delfiles=tw3402 }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3402 }
|
|
{ Submitted by "Layton Davis" on 2004-11-26 }
|
|
{ e-mail: layton@layton.tk }
|
|
library test;
|
|
|
|
var
|
|
tic : integer;
|
|
|
|
procedure SetTic(num:integer);
|
|
begin
|
|
tic := num;
|
|
end;
|
|
|
|
begin
|
|
end.
|