mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:08:13 +02:00
19 lines
188 B
ObjectPascal
19 lines
188 B
ObjectPascal
program test_program;
|
|
|
|
uses
|
|
tcase48;
|
|
|
|
var
|
|
i : integer;
|
|
|
|
begin
|
|
test_proc(i);
|
|
if (i <> 1) then
|
|
begin
|
|
writeln('FAIL');
|
|
halt(1);
|
|
end
|
|
else
|
|
writeln('OK');
|
|
end.
|