mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
16 lines
165 B
ObjectPascal
16 lines
165 B
ObjectPascal
{ %recompile }
|
|
|
|
uses ub0421a;
|
|
|
|
var
|
|
c : cl3;
|
|
begin
|
|
c:=cl3.create;
|
|
writeln(c.f);
|
|
if (c.f<>10) then
|
|
begin
|
|
writeln('Error!');
|
|
halt(1);
|
|
end;
|
|
end.
|