mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 01:59:45 +02:00
17 lines
182 B
ObjectPascal
17 lines
182 B
ObjectPascal
{ %version=1.1 }
|
|
{ %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.
|