mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
15 lines
142 B
ObjectPascal
15 lines
142 B
ObjectPascal
{ %recompile }
|
|
|
|
uses ub0506;
|
|
|
|
var
|
|
c : c2;
|
|
i : integer;
|
|
begin
|
|
c:=c2.create;
|
|
c.value:=1;
|
|
i:=c.value;
|
|
if i<>2 then
|
|
halt(1);
|
|
end.
|